01:00:18 | Start |
| == create an IPv6 socket == |
01:00:18 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
01:00:18 | return sockfd=4
|
| == get the default value of hoplimit option == |
01:00:18 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_MULTICAST_HOPS, optval:0x3ffcd9f90e0, optlen:0x3ffcd9f90dc)
|
01:00:18 | return length 4
|
| == set the value of hoplimit option to 64 == |
01:00:18 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_MULTICAST_HOPS, optval:0x3ffcd9f90e0, optlen:4)
|
01:00:18 | return 0
|
| == get the value of hoplimit option == |
01:00:18 | getsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_MULTICAST_HOPS, optval:0x3ffcd9f90e0, optlen:0x3ffcd9f90dc)
|
01:00:18 | return length 4
|
| OK |
01:00:18 | End |