Modifying traffic identifier (TID) for video stream #1564
-
Does anyone know how I can modify the tid for udp packets sent using kinesis webrtc? Capturing the packets through wireshark, I see all the video packets go as besteffort and I would like to change it to video to reduce the contention time. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
If you are referring top DSCP/TOS on the packet? I don't think anything is being set and whether it actually will make any difference. However, you might want to try to set socket options here: and see whether it makes any difference in your ISP. Would love to hear back |
Beta Was this translation helpful? Give feedback.
-
Oops, I am terribly sorry. I pointed to the location for sending/receiving the data channel bits and not the rtp. Here is where you can configure and check whether your network equipment actually honors the dscp/tos You can issue another setsockopt call with IPPROTO_IP/IP_TOS or a more platform independent way using SOL_SOCKET/SO_PRIORITY |
Beta Was this translation helpful? Give feedback.
Oops, I am terribly sorry. I pointed to the location for sending/receiving the data channel bits and not the rtp.
Here is where you can configure and check whether your network equipment actually honors the dscp/tos
amazon-kinesis-video-streams-webrtc-sdk-c/src/source/Ice/Network.c
Line 168 in 08e4d29
You can issue another setsockopt call with IPPROTO_IP/IP_TOS or a more platform independent way using SOL_SOCKET/SO_PRIORITY