16:32:59 | Start |
| == create an IPv6/UDP socket == |
16:32:59 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
16:32:59 | return sockfd=4
|
16:33:00 | tst_get_unused_port() get port 55020
|
| == set IPV6_RECVPKTINFO to 1 == |
16:33:00 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_RECVPKTINFO, optval:0x3ffecaf92e8, optlen:4)
|
16:33:00 | return 0
|
| == bind socket to address == |
16:33:00 | bind(sockfd:4, my_addr:0x3ffecaf93c4, addrlen:28)
|
16:33:00 | return 0
|
| == sendto message to itself == |
16:33:00 | sendto(sockfd:4, buf:0x1008070, len:17, flags:0, to:0x3ffecaf93c4, tolen:28)
|
16:33:00 | return 17
|
| == recv msg from server == |
16:33:00 | recvmsg(sockfd:4, msg:0x3ffecaf9378, flags:0)
|
16:33:00 | return 17
|
| the received destination address = 0000:0000:0000:0000:0000:0000:0000:0001, length = 36 |
16:33:00 | close(4)
|
| OK |
16:33:00 | End |