mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
Use CS6 instead of CS7 for audio traffic
CS7 is reserved for network control traffic.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user