ntp/chrony/client.go (26 lines of code) (raw):
/*
Copyright (c) Facebook, Inc. and its affiliates.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package chrony
import (
"encoding/binary"
"io"
log "github.com/sirupsen/logrus"
)
// Client talks to chronyd
type Client struct {
Connection io.ReadWriter
Sequence uint32
}
// Communicate sends the packet to chronyd, parse response into something usable
func (n *Client) Communicate(packet RequestPacket) (ResponsePacket, error) {
n.Sequence++
var err error
packet.SetSequence(n.Sequence)
err = binary.Write(n.Connection, binary.BigEndian, packet)
if err != nil {
return nil, err
}
response := make([]uint8, 1024)
read, err := n.Connection.Read(response)
if err != nil {
return nil, err
}
log.Debugf("Read %d bytes", read)
return decodePacket(response[:read])
}