mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-08-20 18:33:52 -07:00
* Update vendor github.com/coreos/go-systemd/dbus@v15 * Update vendor github.com/ema/qdisc * Update vendor github.com/godbus/dbus * Update vendor github.com/golang/protobuf/proto * Update vendor github.com/lufia/iostat * Update vendor github.com/matttproud/golang_protobuf_extensions/pbutil@v1.0.0 * Update vendor github.com/prometheus/client_golang/... * Update vendor github.com/prometheus/common/... * Update vendor github.com/prometheus/procfs/... * Update vendor github.com/sirupsen/logrus@v1.0.3 Adds vendor golang.org/x/crypto * Update vendor golang.org/x/net/... * Update vendor golang.org/x/sys/... * Update end to end output.
51 lines
908 B
Go
51 lines
908 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)
|
|
}
|