summaryrefslogtreecommitdiff
path: root/tcp-accept.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2022-01-27 14:34:10 +0800
committerMatt Johnston <matt@ucc.asn.au>2022-01-27 14:34:10 +0800
commiteae3c90029bd1bac2c6b0d412ca2c852a00f9a75 (patch)
treeaa34e079115a8bc3d7de5a6ee6ad4f49f990bc41 /tcp-accept.c
parentb6a1fc201e6702dd2420bd8658cd223774769f9c (diff)
downloaddropbear-eae3c90029bd1bac2c6b0d412ca2c852a00f9a75.tar.gz
Leave non-interactive at default QoS class
Lower class levels are less well defined, and non-interactive SSH can carry various different types of applications. This change also sets lowdelay class (AF21) earlier in an an outbound dbclient session
Diffstat (limited to 'tcp-accept.c')
-rw-r--r--tcp-accept.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/tcp-accept.c b/tcp-accept.c
index 6578d71..73cfa54 100644
--- a/tcp-accept.c
+++ b/tcp-accept.c
@@ -45,13 +45,6 @@ static void cleanup_tcp(const struct Listener *listener) {
m_free(tcpinfo);
}
-int tcp_prio_inithandler(struct Channel* channel)
-{
- TRACE(("tcp_prio_inithandler channel %d", channel->index))
- channel->prio = DROPBEAR_CHANNEL_PRIO_UNKNOWABLE;
- return 0;
-}
-
static void tcp_acceptor(const struct Listener *listener, int sock) {
int fd;