summaryrefslogtreecommitdiff
path: root/sftp-common.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:45:54 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:45:54 +1100
commitf17883e6a0f9462c8bc163cce44331862581b0cb (patch)
tree3e298f6761b40b7be32c76f529f92b1f276cb329 /sftp-common.h
parent574c41fdb3ff4b8eb7f121b05a08f2415ec7efec (diff)
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[clientloop.c includes.h monitor.c progressmeter.c scp.c] [serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c] move #include <signal.h> out of includes.h; ok markus@
Diffstat (limited to 'sftp-common.h')
-rw-r--r--sftp-common.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sftp-common.h b/sftp-common.h
index 2b1995a2d..72be6e61c 100644
--- a/sftp-common.h
+++ b/sftp-common.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-common.h,v 1.6 2006/01/02 01:20:31 djm Exp $ */ 1/* $OpenBSD: sftp-common.h,v 1.7 2006/02/20 17:19:54 stevesk Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -25,6 +25,9 @@
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28#include <sys/types.h>
29#include <sys/stat.h>
30
28/* Maximum packet that we are willing to send/accept */ 31/* Maximum packet that we are willing to send/accept */
29#define SFTP_MAX_MSG_LENGTH (256 * 1024) 32#define SFTP_MAX_MSG_LENGTH (256 * 1024)
30 33