github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/ipv6/extension-headers-hop-by-hop.go (about) 1 /* For license and copyright information please see LEGAL file in repository */ 2 3 package ipv6 4 5 // HopByHop is IPv6 extension header with NextHeader==0 6 type HopByHop struct { 7 NextHeader uint8 8 HdrExtLen uint8 9 Options []byte 10 }