diff options
author | Christopher Koch <chrisko@google.com> | 2019-02-28 13:44:56 -0800 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-03-11 21:54:10 -0700 |
commit | 5073ba65eb176fae79fdca21f28728a0c2c4ca19 (patch) | |
tree | d617173503f875ab6294ce870a93ac7a9b56c2f6 /examples | |
parent | 5859695ac2f7e59f6a7de0a0353aa1e1f19aa6aa (diff) |
dhcpv6: rename stuttering types.
dhcpv6.DHCPv6Message -> dhcpv6.Message
dhcpv6.DHCPv6Relay -> dhcpv6.RelayMessage
Diffstat (limited to 'examples')
-rw-r--r-- | examples/packetcrafting6/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/packetcrafting6/main.go b/examples/packetcrafting6/main.go index afba3a0..9ec0d85 100644 --- a/examples/packetcrafting6/main.go +++ b/examples/packetcrafting6/main.go @@ -11,7 +11,7 @@ import ( func main() { // In this example we create and manipulate a DHCPv6 solicit packet // and encapsulate it in a relay packet. To to this, we use - // `dhcpv6.DHCPv6Message` and `dhcpv6.DHCPv6Relay`, two structures + // `dhcpv6.Message` and `dhcpv6.DHCPv6Relay`, two structures // that implement the `dhcpv6.DHCPv6` interface. // Then print the wire-format representation of the packet. |