16:33:37 | Start |
| == create an IPv6 socket == |
16:33:37 | socket(domain:AF_INET6, type:SOCK_STREAM, protocol:0)
|
16:33:37 | return sockfd=4
|
| == remove any sticky Destination Options header == |
16:33:38 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3ffc95f8ba8, optlen:0)
|
16:33:38 | return 0
|
| == set Destination Options header == |
16:33:38 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3ffc95f8ba8, optlen:8)
|
16:33:38 | return 0
|
| == get Destination Options header == |
16:33:38 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3ffc95f8ba8, optlen:0x3ffc95f8ba4)
|
16:33:38 | return length 8
|
| == check length of Destination Options header == |
| == remove any sticky Destination Options header == |
16:33:38 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3ffc95f8ba8, optlen:0)
|
16:33:38 | return 0
|
| == get Destination Options header == |
16:33:38 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3ffc95f8ba8, optlen:0x3ffc95f8ba4)
|
16:33:38 | return length 0
|
| == check the Destination Options header has been removed == |
| OK |
16:33:38 | End |