summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2009-06-21 18:17:19 +1000
committerDarren Tucker <dtucker@zip.com.au>2009-06-21 18:17:19 +1000
commit1cc55d7a607455d75db0204b5acebce47667b0f8 (patch)
treeb3686fc7c5e0af15be7140231729e207e928ac1e /sshconnect.c
parent761c38918aecbbe2df97d13aea29c6bbf9212617 (diff)
- andreas@cvs.openbsd.org 2009/05/28 16:50:16
[sshd.c packet.c serverloop.c monitor_wrap.c clientloop.c sshconnect.c monitor.c] Keep track of number of bytes read and written. Needed for upcoming changes. Most code from Martin Forssen, maf at appgate dot com. ok markus@
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c
index c04aa1057..dee3ba544 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.c,v 1.212 2008/10/14 18:11:33 stevesk Exp $ */ 1/* $OpenBSD: sshconnect.c,v 1.213 2009/05/27 06:38:16 andreas Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -413,7 +413,7 @@ ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
413 * Waits for the server identification string, and sends our own 413 * Waits for the server identification string, and sends our own
414 * identification string. 414 * identification string.
415 */ 415 */
416static void 416void
417ssh_exchange_identification(int timeout_ms) 417ssh_exchange_identification(int timeout_ms)
418{ 418{
419 char buf[256], remote_version[256]; /* must be same size! */ 419 char buf[256], remote_version[256]; /* must be same size! */