mirror of https://github.com/subgraph/fw-daemon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
644 B
36 lines
644 B
package dbus
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"errors"
|
|
"io"
|
|
)
|
|
|
|
type genericTransport struct {
|
|
io.ReadWriteCloser
|
|
}
|
|
|
|
func (t genericTransport) SendNullByte() error {
|
|
_, err := t.Write([]byte{0})
|
|
return err
|
|
}
|
|
|
|
func (t genericTransport) SupportsUnixFDs() bool {
|
|
return false
|
|
}
|
|
|
|
func (t genericTransport) EnableUnixFDs() {}
|
|
|
|
func (t genericTransport) ReadMessage() (*Message, error) {
|
|
return DecodeMessage(t)
|
|
}
|
|
|
|
func (t genericTransport) SendMessage(msg *Message) error {
|
|
for _, v := range msg.Body {
|
|
if _, ok := v.(UnixFD); ok {
|
|
return errors.New("dbus: unix fd passing not enabled")
|
|
}
|
|
}
|
|
return msg.EncodeTo(t, binary.LittleEndian)
|
|
}
|