- stevesk@cvs.openbsd.org 2002/01/24 21:13:23
[packet.c] need misc.h for set_nodelay()
This commit is contained in:
parent
398e1cfa23
commit
4d007769bf
|
@ -4,7 +4,9 @@
|
||||||
[channels.c misc.c misc.h packet.c]
|
[channels.c misc.c misc.h packet.c]
|
||||||
add set_nodelay() to set TCP_NODELAY on a socket (prep for nagle tuning).
|
add set_nodelay() to set TCP_NODELAY on a socket (prep for nagle tuning).
|
||||||
no nagle changes just yet; ok djm@ markus@
|
no nagle changes just yet; ok djm@ markus@
|
||||||
|
- stevesk@cvs.openbsd.org 2002/01/24 21:13:23
|
||||||
|
[packet.c]
|
||||||
|
need misc.h for set_nodelay()
|
||||||
|
|
||||||
20020130
|
20020130
|
||||||
- (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@
|
- (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@
|
||||||
|
@ -7407,4 +7409,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1799 2002/02/05 00:52:13 djm Exp $
|
$Id: ChangeLog,v 1.1800 2002/02/05 00:52:54 djm Exp $
|
||||||
|
|
3
packet.c
3
packet.c
|
@ -37,7 +37,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: packet.c,v 1.86 2002/01/24 21:09:25 stevesk Exp $");
|
RCSID("$OpenBSD: packet.c,v 1.87 2002/01/24 21:13:23 stevesk Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
|
@ -59,6 +59,7 @@ RCSID("$OpenBSD: packet.c,v 1.86 2002/01/24 21:09:25 stevesk Exp $");
|
||||||
#include "mac.h"
|
#include "mac.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "canohost.h"
|
#include "canohost.h"
|
||||||
|
#include "misc.h"
|
||||||
|
|
||||||
#ifdef PACKET_DEBUG
|
#ifdef PACKET_DEBUG
|
||||||
#define DBG(x) x
|
#define DBG(x) x
|
||||||
|
|
Loading…
Reference in New Issue