File: transport_darwin.go

package info (click to toggle)
golang-dbus 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports, forky, sid, trixie
  • size: 592 kB
  • sloc: makefile: 2
file content (6 lines) | stat: -rw-r--r-- 105 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
package dbus

func (t *unixTransport) SendNullByte() error {
	_, err := t.Write([]byte{0})
	return err
}