01:01:40 | Start |
| == create an IPv6/UDP socket == |
01:01:40 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
01:01:40 | return sockfd=4
|
| == enable socket to receive destination options == |
01:01:40 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_RECVDSTOPTS, optval:0x3ffda8f8700, optlen:4)
|
01:01:40 | return 0
|
01:01:41 | tst_get_unused_port() get port 58990
|
| == bind socket to address == |
01:01:42 | bind(sockfd:4, my_addr:0x3ffda8f87d4, addrlen:28)
|
01:01:42 | return 0
|
| == send message == |
01:01:42 | sendmsg(sockfd:4, msg:0x3ffda8f8788, flags:0)
|
01:01:42 | return 100
|
| == receive message == |
01:01:42 | recvmsg(sockfd:4, msg:0x3ffda8f8788, flags:64)
|
01:01:42 | return 100
|
| == check the received destination option == |
| the received destination option length: 24 |
01:01:42 | close(4)
|
| OK |
01:01:42 | End |