08:41:49 | Start |
| == create an IPv6 socket == |
08:41:49 | socket(domain:AF_INET6, type:SOCK_STREAM, protocol:0)
|
08:41:49 | return sockfd=4
|
| == remove any sticky Destination Options header == |
08:41:49 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffff33b25d0, optlen:0)
|
08:41:49 | return 0
|
| == set Destination Options header == |
08:41:49 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffff33b25d0, optlen:8)
|
08:41:49 | return 0
|
| == get Destination Options header == |
08:41:49 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffff33b25d0, optlen:0x7ffff33b25cc)
|
08:41:49 | return length 8
|
| == check length of Destination Options header == |
| == remove any sticky Destination Options header == |
08:41:49 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffff33b25d0, optlen:0)
|
08:41:49 | return 0
|
| == get Destination Options header == |
08:41:49 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffff33b25d0, optlen:0x7ffff33b25cc)
|
08:41:49 | return length 0
|
| == check the Destination Options header has been removed == |
| OK |
08:41:50 | End |