1 package dbus 2 3 func (t *unixTransport) SendNullByte() error { 4 _, err := t.Write([]byte{0}) 5 return err 6 } 7
View as plain text