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