parent
a743398d04
commit
faa1ea8c20
|
@ -62,6 +62,9 @@
|
||||||
- markus@cvs.openbsd.org 2002/12/10 19:26:50
|
- markus@cvs.openbsd.org 2002/12/10 19:26:50
|
||||||
[packet.c]
|
[packet.c]
|
||||||
move tos handling to packet_set_tos; ok provos/henning/deraadt
|
move tos handling to packet_set_tos; ok provos/henning/deraadt
|
||||||
|
- markus@cvs.openbsd.org 2002/12/10 19:47:14
|
||||||
|
[packet.c]
|
||||||
|
static
|
||||||
|
|
||||||
20021205
|
20021205
|
||||||
- (djm) PERL-free fixpaths from stuge-openssh-unix-dev@cdy.org
|
- (djm) PERL-free fixpaths from stuge-openssh-unix-dev@cdy.org
|
||||||
|
@ -897,4 +900,4 @@
|
||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2532 2002/12/23 02:41:41 mouring Exp $
|
$Id: ChangeLog,v 1.2533 2002/12/23 02:42:52 mouring Exp $
|
||||||
|
|
4
packet.c
4
packet.c
|
@ -37,7 +37,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: packet.c,v 1.101 2002/12/10 19:26:50 markus Exp $");
|
RCSID("$OpenBSD: packet.c,v 1.102 2002/12/10 19:47:14 markus Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
|
@ -1314,7 +1314,7 @@ packet_not_very_much_data_to_write(void)
|
||||||
return buffer_len(&output) < 128 * 1024;
|
return buffer_len(&output) < 128 * 1024;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
packet_set_tos(int interactive)
|
packet_set_tos(int interactive)
|
||||||
{
|
{
|
||||||
int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
|
int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
|
||||||
|
|
Loading…
Reference in New Issue