08:41:48 | Start |
| == create an IPv6 socket == |
08:41:48 | socket(domain:AF_INET6, type:SOCK_STREAM, protocol:0)
|
08:41:48 | return sockfd=4
|
| == set Destination options header with NULL data pointer == |
08:41:48 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:(nil), optlen:8)
|
08:41:48 | return error EINVAL
|
| == set Destination options header with larger length == |
08:41:48 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffdc4691b20, optlen:65535)
|
08:41:48 | return error EINVAL
|
| == set Destination options header with bad option == |
08:41:49 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffdc4691b20, optlen:8)
|
08:41:49 | return error EINVAL
|
| == set Destination options header with valid option == |
08:41:49 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_DSTOPTS, optval:0x7ffdc4691b20, optlen:8)
|
08:41:49 | return 0
|
08:41:49 | close(4)
|
| OK |
08:41:49 | End |