comparison tcp-accept.c @ 1859:1d86a58fb52d

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
author Matt Johnston <matt@ucc.asn.au>
date Thu, 27 Jan 2022 14:34:10 +0800
parents 572a7aefa188
children
comparison
equal deleted inserted replaced
1857:6022df862942 1859:1d86a58fb52d
41 41
42 m_free(tcpinfo->sendaddr); 42 m_free(tcpinfo->sendaddr);
43 m_free(tcpinfo->listenaddr); 43 m_free(tcpinfo->listenaddr);
44 m_free(tcpinfo->request_listenaddr); 44 m_free(tcpinfo->request_listenaddr);
45 m_free(tcpinfo); 45 m_free(tcpinfo);
46 }
47
48 int tcp_prio_inithandler(struct Channel* channel)
49 {
50 TRACE(("tcp_prio_inithandler channel %d", channel->index))
51 channel->prio = DROPBEAR_CHANNEL_PRIO_UNKNOWABLE;
52 return 0;
53 } 46 }
54 47
55 static void tcp_acceptor(const struct Listener *listener, int sock) { 48 static void tcp_acceptor(const struct Listener *listener, int sock) {
56 49
57 int fd; 50 int fd;