[packet.c]
     static
This commit is contained in:
Ben Lindstrom 2002-12-23 02:42:52 +00:00
Родитель a743398d04
Коммит faa1ea8c20
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -62,6 +62,9 @@
- markus@cvs.openbsd.org 2002/12/10 19:26:50
[packet.c]
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
- (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;
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 $

Просмотреть файл

@ -37,7 +37,7 @@
*/
#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 "buffer.h"
@ -1314,7 +1314,7 @@ packet_not_very_much_data_to_write(void)
return buffer_len(&output) < 128 * 1024;
}
void
static void
packet_set_tos(int interactive)
{
int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;