Skip to content

Commit a45dc2b

Browse files
committed
Screwed up the revert in servconf.
I used the new DSCP values from the 10.1 branch instead of the 10.0 current. Annoying mistake
1 parent 7be4edd commit a45dc2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

servconf.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,9 @@ fill_default_server_options(ServerOptions *options)
495495
if (options->use_mptcp == -1)
496496
options->use_mptcp = 0;
497497
if (options->ip_qos_interactive == -1)
498-
options->ip_qos_interactive = IPTOS_DSCP_EF;
498+
options->ip_qos_interactive = IPTOS_DSCP_AF21;
499499
if (options->ip_qos_bulk == -1)
500-
options->ip_qos_bulk = IPTOS_DCSP_CS0;
500+
options->ip_qos_bulk = IPTOS_DCSP_CS1;
501501
if (options->version_addendum == NULL)
502502
options->version_addendum = xstrdup("");
503503
if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1)

0 commit comments

Comments
 (0)