mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-01-25 17:14:20 +00:00
Use CS6 instead of CS7 for audio traffic
CS7 is reserved for network control traffic.
This commit is contained in:
parent
bb3b7984f3
commit
2008bc0eaa
@ -637,14 +637,15 @@ namespace platf {
|
||||
option = IP_TOS;
|
||||
}
|
||||
|
||||
// The specific DSCP values here are chosen to be consistent with Windows
|
||||
// The specific DSCP values here are chosen to be consistent with Windows,
|
||||
// except that we use CS6 instead of CS7 for audio traffic.
|
||||
int dscp = 0;
|
||||
switch (data_type) {
|
||||
case qos_data_type_e::video:
|
||||
dscp = 40;
|
||||
break;
|
||||
case qos_data_type_e::audio:
|
||||
dscp = 56;
|
||||
dscp = 48;
|
||||
break;
|
||||
default:
|
||||
BOOST_LOG(error) << "Unknown traffic type: "sv << (int) data_type;
|
||||
|
||||
@ -484,14 +484,15 @@ namespace platf {
|
||||
option = IP_TOS;
|
||||
}
|
||||
|
||||
// The specific DSCP values here are chosen to be consistent with Windows
|
||||
// The specific DSCP values here are chosen to be consistent with Windows,
|
||||
// except that we use CS6 instead of CS7 for audio traffic.
|
||||
int dscp = 0;
|
||||
switch (data_type) {
|
||||
case qos_data_type_e::video:
|
||||
dscp = 40;
|
||||
break;
|
||||
case qos_data_type_e::audio:
|
||||
dscp = 56;
|
||||
dscp = 48;
|
||||
break;
|
||||
default:
|
||||
BOOST_LOG(error) << "Unknown traffic type: "sv << (int) data_type;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user