17b013617c
Signed-off-by: Yoan Blanc <yoan@dosimple.ch>
15 lines
222 B
Go
15 lines
222 B
Go
package dbus
|
|
|
|
import "io"
|
|
|
|
func (t *unixTransport) SendNullByte() error {
|
|
n, _, err := t.UnixConn.WriteMsgUnix([]byte{0}, nil, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if n != 1 {
|
|
return io.ErrShortWrite
|
|
}
|
|
return nil
|
|
}
|