mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-29 19:24:23 +01:00
Gopkg.lock says it's "dbea6f2bd41658b84b00417ceefa416b979cbf10"
but it is actually "5017d4e9a9cf2d4381db99eacd9baf84b95bfb14".
We need to make sure Gopkg.lock does not lie otherwise `dep ensure`
would really fetch the locked revision and it causes build failure
due to API changes.
Introduced by: 76d9db3e0b (vendor: Add github.com/gogo/protobuf).
While at it, constraint containerd/cgroups to a working revision.
Fixes: #1447
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
51 lines
907 B
Go
51 lines
907 B
Go
package dbus
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"errors"
|
|
"io"
|
|
"unsafe"
|
|
)
|
|
|
|
var nativeEndian binary.ByteOrder
|
|
|
|
func detectEndianness() binary.ByteOrder {
|
|
var x uint32 = 0x01020304
|
|
if *(*byte)(unsafe.Pointer(&x)) == 0x01 {
|
|
return binary.BigEndian
|
|
}
|
|
return binary.LittleEndian
|
|
}
|
|
|
|
func init() {
|
|
nativeEndian = detectEndianness()
|
|
}
|
|
|
|
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, nativeEndian)
|
|
}
|