16:33:11 | Start |
| == create an IPv6/UDP socket == |
16:33:11 | socket(domain:AF_INET6, type:SOCK_DGRAM, protocol:0)
|
16:33:11 | return sockfd=4
|
16:33:12 | tst_get_unused_port() get port 47168
|
| == bind socket to address == |
16:33:12 | bind(sockfd:4, my_addr:0x3ffd9978d64, addrlen:28)
|
16:33:12 | return 0
|
| == send message with traffic class set to -1 == |
16:33:12 | sendmsg(sockfd:4, msg:0x3ffd9978d28, flags:0)
|
16:33:12 | return 100
|
| == recv message == |
16:33:12 | recv(sockfd:4, buf:0x3ffd9978c9c, len:100, flags:64)
|
16:33:12 | return 100
|
| == send message with traffic class set to 0 == |
16:33:12 | sendmsg(sockfd:4, msg:0x3ffd9978d28, flags:0)
|
16:33:12 | return 100
|
| == recv message == |
16:33:12 | recv(sockfd:4, buf:0x3ffd9978c9c, len:100, flags:64)
|
16:33:12 | return 100
|
| == send message with traffic class set to 64 == |
16:33:13 | sendmsg(sockfd:4, msg:0x3ffd9978d28, flags:0)
|
16:33:13 | return 100
|
| == recv message == |
16:33:13 | recv(sockfd:4, buf:0x3ffd9978c9c, len:100, flags:64)
|
16:33:13 | return 100
|
| == send message with traffic class set to 255 == |
16:33:13 | sendmsg(sockfd:4, msg:0x3ffd9978d28, flags:0)
|
16:33:13 | return 100
|
| == recv message == |
16:33:13 | recv(sockfd:4, buf:0x3ffd9978c9c, len:100, flags:64)
|
16:33:13 | return 100
|
| == send message with traffic class set to 256 == |
16:33:13 | sendmsg(sockfd:4, msg:0x3ffd9978d28, flags:0)
|
16:33:13 | return -1
|
| == send message with traffic class set to -2 == |
16:33:13 | sendmsg(sockfd:4, msg:0x3ffd9978d28, flags:0)
|
16:33:13 | return -1
|
| OK |
16:33:13 | End |