summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/dhcpv6.go
diff options
context:
space:
mode:
authorAndrea Barberio <insomniac@slackware.it>2017-12-08 23:18:01 +0000
committerAndrea Barberio <insomniac@slackware.it>2017-12-08 23:18:01 +0000
commit37d15e6162da76cb135ee09475b3f224f2567ca6 (patch)
tree0194c1b1d73e146da0a1dc01a20dde797da0e1cc /dhcpv6/dhcpv6.go
parentdd43439452cc80f2502380364d3b1d9bbd8a5689 (diff)
Added String() to DHCPv6 interface and implemented in DHCPv6Relay
Diffstat (limited to 'dhcpv6/dhcpv6.go')
-rw-r--r--dhcpv6/dhcpv6.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/dhcpv6/dhcpv6.go b/dhcpv6/dhcpv6.go
index 97eb401..9e24322 100644
--- a/dhcpv6/dhcpv6.go
+++ b/dhcpv6/dhcpv6.go
@@ -7,6 +7,7 @@ import (
type DHCPv6 interface {
Type() MessageType
ToBytes() []byte
+ String() string
Summary() string
Length() int
}