08:41:33 | Start |
| == create an IPv6/UDP socket == |
08:41:33 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
08:41:33 | return sockfd=4
|
| == enable socket to receive hop by hop options == |
08:41:33 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_RECVHOPOPTS, optval:0x7ffe5ca2bf1c, optlen:4)
|
08:41:33 | return 0
|
08:41:34 | tst_get_unused_port() get port 51924
|
| == bind socket to address == |
08:41:34 | bind(sockfd:4, my_addr:0x7ffe5ca2c000, addrlen:28)
|
08:41:34 | return 0
|
| == send message == |
08:41:34 | sendmsg(sockfd:4, msg:0x7ffe5ca2bfb0, flags:0)
|
08:41:34 | return 100
|
| == receive message == |
08:41:34 | recvmsg(sockfd:4, msg:0x7ffe5ca2bfb0, flags:64)
|
08:41:34 | return 100
|
| == check the received hop by hop option == |
| the received hop by hop option length: 24 |
08:41:35 | close(4)
|
| OK |
08:41:35 | End |