summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/option_ntp_servers.go
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpv4/option_ntp_servers.go')
-rw-r--r--dhcpv4/option_ntp_servers.go38
1 files changed, 0 insertions, 38 deletions
diff --git a/dhcpv4/option_ntp_servers.go b/dhcpv4/option_ntp_servers.go
deleted file mode 100644
index 1c74e13..0000000
--- a/dhcpv4/option_ntp_servers.go
+++ /dev/null
@@ -1,38 +0,0 @@
-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 {
- return IPsToBytes(o.NTPServers)
-}
-
-// String returns a human-readable string.
-func (o *OptNTPServers) String() string {
- return fmt.Sprintf("NTP Servers -> %v", IPsToString(o.NTPServers))
-}