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
|
| == set Destination options header with NULL data pointer == |
16:33:37 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:(nil), optlen:8)
|
16:33:37 | return error EINVAL
|
| == set Destination options header with larger length == |
16:33:37 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3fffd3f9188, optlen:65535)
|
16:33:37 | return error EINVAL
|
| == set Destination options header with bad option == |
16:33:37 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3fffd3f9188, optlen:8)
|
16:33:37 | return error EINVAL
|
| == set Destination options header with valid option == |
16:33:37 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x3fffd3f9188, optlen:8)
|
16:33:37 | return 0
|
16:33:37 | close(4)
|
| OK |
16:33:37 | End |