package dhcpv4 import ( "fmt" "net" ) // This option implements the network time protocol servers option // https://tools.ietf.org/html/rfc2132 // OptNTPServers represents an option encapsulating the NTP servers. type OptNTPServers struct { NTPServers []net.IP } // ParseOptNTPServers returns a new OptNTPServers from a byte stream, or error if any. func ParseOptNTPServers(data []byte) (*OptNTPServers, error) { ips, err := ParseIPs(data) if err != nil { return nil, err } return &OptNTPServers{NTPServers: ips}, nil } // Code returns the option code. func (o *OptNTPServers) Code() OptionCode { return OptionNTPServers } // ToBytes returns a serialized stream of bytes for this option. func (o *OptNTPServers) ToBytes() []byte { ret := []byte{byte(o.Code()), byte(o.Length())} for _, ntp := range o.NTPServers { ret = append(ret, ntp.To4()...) } return ret } // String returns a human-readable string. func (o *OptNTPServers) String() string { var ntpServers string for idx, ntp := range o.NTPServers { ntpServers += ntp.String() if idx < len(o.NTPServers)-1 { ntpServers += ", " } } return fmt.Sprintf("NTP Servers -> %v", ntpServers) } // Length returns the length of the data portion (excluding option code an byte // length). func (o *OptNTPServers) Length() int { return len(o.NTPServers) * 4 }