summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authordjm <djm>2002-02-05 00:52:13 +0000
committerdjm <djm>2002-02-05 00:52:13 +0000
commitb439c28989c6845e26a8db5389396a98ad4c7ded (patch)
treec936c4091eac8897f499c6fa8f18148046d35dba /misc.h
parentc187fa607bd760e5a646d452bf5b6fa79cced098 (diff)
downloadopenssh-b439c28989c6845e26a8db5389396a98ad4c7ded.tar.gz
- (djm) OpenBSD CVS Sync
- stevesk@cvs.openbsd.org 2002/01/24 21:09:25 [channels.c misc.c misc.h packet.c] add set_nodelay() to set TCP_NODELAY on a socket (prep for nagle tuning). no nagle changes just yet; ok djm@ markus@
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc.h b/misc.h
index fc564527..668fd60d 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.h,v 1.10 2001/06/26 17:27:24 markus Exp $ */
+/* $OpenBSD: misc.h,v 1.11 2002/01/24 21:09:25 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -16,6 +16,7 @@ char *chop(char *);
char *strdelim(char **);
void set_nonblock(int);
void unset_nonblock(int);
+void set_nodelay(int);
int a2port(const char *);
char *cleanhostname(char *);
char *colon(char *);