01:00:32 | Start |
| == create an IPv6 socket == |
01:00:32 | socket(domain:AF_INET6, type:SOCK_STREAM, protocol:0)
|
01:00:32 | return sockfd=4
|
| == get the default value of IPV6_V6ONLY option == |
01:00:33 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_V6ONLY, optval:0x3ffca078900, optlen:0x3ffca0788fc)
|
01:00:33 | return v6only=0
|
| == set the IPV6_V6ONLY option to 1 == |
01:00:33 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_V6ONLY, optval:0x3ffca078900, optlen:4)
|
01:00:33 | return 0
|
| == get the value of IPV6_V6ONLY option == |
01:00:33 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_V6ONLY, optval:0x3ffca078900, optlen:0x3ffca0788fc)
|
01:00:33 | return v6only=1
|
| OK |
01:00:33 | End |