diff options
author | Colin Watson <cjwatson@debian.org> | 2019-04-08 10:46:29 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2020-02-21 12:10:36 +0000 |
commit | a2dabf35ce0228c86a288d11cc847a9d9801604f (patch) | |
tree | f1a309a77b204fc1124dbcb6884444553b981233 /readconf.c | |
parent | 311da721c2a5c6d147738e0699fa49d04cd5762a (diff) |
Revert "upstream: Update default IPQoS in ssh(1), sshd(8) to DSCP AF21 for"
This reverts commit 5ee8448ad7c306f05a9f56769f95336a8269f379.
The IPQoS default changes have some unfortunate interactions with
iptables (see https://bugs.debian.org/923880) and VMware, so I'm
temporarily reverting them until those have been fixed.
Bug-Debian: https://bugs.debian.org/923879
Bug-Debian: https://bugs.debian.org/926229
Bug-Ubuntu: https://bugs.launchpad.net/bugs/1822370
Last-Update: 2019-04-08
Patch-Name: revert-ipqos-defaults.patch
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index e82024678..1b9494d7c 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -2230,9 +2230,9 @@ fill_default_options(Options * options) | |||
2230 | if (options->visual_host_key == -1) | 2230 | if (options->visual_host_key == -1) |
2231 | options->visual_host_key = 0; | 2231 | options->visual_host_key = 0; |
2232 | if (options->ip_qos_interactive == -1) | 2232 | if (options->ip_qos_interactive == -1) |
2233 | options->ip_qos_interactive = IPTOS_DSCP_AF21; | 2233 | options->ip_qos_interactive = IPTOS_LOWDELAY; |
2234 | if (options->ip_qos_bulk == -1) | 2234 | if (options->ip_qos_bulk == -1) |
2235 | options->ip_qos_bulk = IPTOS_DSCP_CS1; | 2235 | options->ip_qos_bulk = IPTOS_THROUGHPUT; |
2236 | if (options->request_tty == -1) | 2236 | if (options->request_tty == -1) |
2237 | options->request_tty = REQUEST_TTY_AUTO; | 2237 | options->request_tty = REQUEST_TTY_AUTO; |
2238 | if (options->proxy_use_fdpass == -1) | 2238 | if (options->proxy_use_fdpass == -1) |