01:01:07 | Start |
| == create an IPv6/UDP socket == |
01:01:07 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
01:01:07 | return sockfd=4
|
01:01:08 | tst_get_unused_port() get port 56372
|
| == set IPV6_RECVPKTINFO to 1 == |
01:01:08 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_RECVPKTINFO, optval:0x3ffd6778708, optlen:4)
|
01:01:08 | return 0
|
| == bind socket to address == |
01:01:09 | bind(sockfd:4, my_addr:0x3ffd67787e4, addrlen:28)
|
01:01:09 | return 0
|
| == sendto message to itself == |
01:01:09 | sendto(sockfd:4, buf:0x1008070, len:17, flags:0, to:0x3ffd67787e4, tolen:28)
|
01:01:09 | return 17
|
| == recv msg from server == |
01:01:09 | recvmsg(sockfd:4, msg:0x3ffd6778798, flags:0)
|
01:01:09 | return 17
|
| the received destination address = 0000:0000:0000:0000:0000:0000:0000:0001, length = 36 |
01:01:09 | close(4)
|
| OK |
01:01:09 | End |