16:33:32 | Start |
| == create an IPv6/UDP socket == |
16:33:32 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
16:33:32 | return sockfd=4
|
| == enable socket to receive destination options == |
16:33:32 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_RECVDSTOPTS, optval:0x3fffecf85f0, optlen:4)
|
16:33:32 | return 0
|
16:33:33 | tst_get_unused_port() get port 43156
|
| == bind socket to address == |
16:33:33 | bind(sockfd:4, my_addr:0x3fffecf86c4, addrlen:28)
|
16:33:33 | return 0
|
| == send message == |
16:33:33 | sendmsg(sockfd:4, msg:0x3fffecf8678, flags:0)
|
16:33:33 | return 100
|
| == receive message == |
16:33:33 | recvmsg(sockfd:4, msg:0x3fffecf8678, flags:64)
|
16:33:33 | return 100
|
| == check the received destination option == |
| the received destination option length: 24 |
16:33:34 | close(4)
|
| OK |
16:33:34 | End |