summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/option_domain_name_server.go
diff options
context:
space:
mode:
authorinsomniac <insomniacslk@users.noreply.github.com>2018-06-28 17:41:01 +0100
committerGitHub <noreply@github.com>2018-06-28 17:41:01 +0100
commited0cf151f69ed49b94ab37a2e6de3c73f5018805 (patch)
tree63b1253a11a52a5ce0f99028dcd31aa94c2c6485 /dhcpv4/option_domain_name_server.go
parent5be287562fa0c968908d8d908cb695db880dfec4 (diff)
Added OptDomainNameServer for DHCPv4 (#74)
Diffstat (limited to 'dhcpv4/option_domain_name_server.go')
-rw-r--r--dhcpv4/option_domain_name_server.go72
1 files changed, 72 insertions, 0 deletions
diff --git a/dhcpv4/option_domain_name_server.go b/dhcpv4/option_domain_name_server.go
new file mode 100644
index 0000000..78aaf90
--- /dev/null
+++ b/dhcpv4/option_domain_name_server.go
@@ -0,0 +1,72 @@
+package dhcpv4
+
+import (
+ "fmt"
+ "net"
+)
+
+// This option implements the domain name server option
+// https://tools.ietf.org/html/rfc2132
+
+// OptDomainNameServer represents an option encapsulating the domain name
+// servers.
+type OptDomainNameServer struct {
+ NameServers []net.IP
+}
+
+// ParseOptDomainNameServer returns a new OptDomainNameServer from a byte
+// stream, or error if any.
+func ParseOptDomainNameServer(data []byte) (*OptDomainNameServer, error) {
+ if len(data) < 2 {
+ return nil, ErrShortByteStream
+ }
+ code := OptionCode(data[0])
+ if code != OptionDomainNameServer {
+ return nil, fmt.Errorf("expected code %v, got %v", OptionDomainNameServer, code)
+ }
+ length := int(data[1])
+ if length == 0 || length%4 != 0 {
+ return nil, fmt.Errorf("Invalid length: expected multiple of 4 larger than 4, got %v", length)
+ }
+ if len(data) < 2+length {
+ return nil, ErrShortByteStream
+ }
+ nameservers := make([]net.IP, 0, length%4)
+ for idx := 0; idx < length; idx += 4 {
+ b := data[2+idx : 2+idx+4]
+ nameservers = append(nameservers, net.IPv4(b[0], b[1], b[2], b[3]))
+ }
+ return &OptDomainNameServer{NameServers: nameservers}, nil
+}
+
+// Code returns the option code.
+func (o *OptDomainNameServer) Code() OptionCode {
+ return OptionDomainNameServer
+}
+
+// ToBytes returns a serialized stream of bytes for this option.
+func (o *OptDomainNameServer) ToBytes() []byte {
+ ret := []byte{byte(o.Code()), byte(o.Length())}
+ for _, ns := range o.NameServers {
+ ret = append(ret, ns...)
+ }
+ return ret
+}
+
+// String returns a human-readable string.
+func (o *OptDomainNameServer) String() string {
+ var servers string
+ for idx, ns := range o.NameServers {
+ servers += ns.String()
+ if idx < len(o.NameServers)-1 {
+ servers += ", "
+ }
+ }
+ return fmt.Sprintf("Domain Name Servers -> %v", servers)
+}
+
+// Length returns the length of the data portion (excluding option code an byte
+// length).
+func (o *OptDomainNameServer) Length() int {
+ return len(o.NameServers) * 4
+}