7 lines
105 B
Go
Raw Normal View History

2014-03-04 16:40:35 -08:00
package dbus
func (t *unixTransport) SendNullByte() error {
_, err := t.Write([]byte{0})
return err
}