01:01:30 | Start |
| == create an IPv6/UDP socket == |
01:01:30 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
01:01:30 | return sockfd=4
|
| == enable socket to receive hop by hop options == |
01:01:30 | setsockopt(sockfd:4, level:IPPROTO_IPV6, optname:IPV6_RECVHOPOPTS, optval:0x3ffd2078bf0, optlen:4)
|
01:01:30 | return 0
|
01:01:31 | tst_get_unused_port() get port 46506
|
| == bind socket to address == |
01:01:31 | bind(sockfd:4, my_addr:0x3ffd2078cc4, addrlen:28)
|
01:01:31 | return 0
|
| == send message == |
01:01:31 | sendmsg(sockfd:4, msg:0x3ffd2078c78, flags:0)
|
01:01:31 | return 100
|
| == receive message == |
01:01:32 | recvmsg(sockfd:4, msg:0x3ffd2078c78, flags:64)
|
01:01:32 | return 100
|
| == check the received hop by hop option == |
| the received hop by hop option length: 24 |
01:01:32 | close(4)
|
| OK |
01:01:32 | End |