summaryrefslogtreecommitdiff
path: root/sftp-client.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-23 21:27:18 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-23 21:27:18 +0000
commitb1f483f472da5fd2dbcb009d9988088f43c21579 (patch)
tree2d3f0c9906f6bb38e2d8f1e2a8f673191fdd3769 /sftp-client.h
parent5c3855210ef20be5931d4b58f641d71bc3b203e8 (diff)
- deraadt@cvs.openbsd.org 2002/06/23 09:30:14
[sftp-client.c sftp-client.h sftp-common.c sftp-int.c sftp-server.c sftp.c] bunch of u_int vs int stuff
Diffstat (limited to 'sftp-client.h')
-rw-r--r--sftp-client.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/sftp-client.h b/sftp-client.h
index ceda879b9..b06171168 100644
--- a/sftp-client.h
+++ b/sftp-client.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.h,v 1.9 2002/02/13 00:59:23 djm Exp $ */ 1/* $OpenBSD: sftp-client.h,v 1.10 2002/06/23 09:30:14 deraadt Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001,2002 Damien Miller. All rights reserved. 4 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
@@ -41,11 +41,9 @@ struct SFTP_DIRENT {
41 * Initialiase a SSH filexfer connection. Returns -1 on error or 41 * Initialiase a SSH filexfer connection. Returns -1 on error or
42 * protocol version on success. 42 * protocol version on success.
43 */ 43 */
44struct sftp_conn * 44struct sftp_conn *do_init(int, int, u_int, u_int);
45do_init(int, int, u_int, u_int);
46 45
47u_int 46u_int sftp_proto_version(struct sftp_conn *);
48sftp_proto_version(struct sftp_conn *);
49 47
50/* Close file referred to by 'handle' */ 48/* Close file referred to by 'handle' */
51int do_close(struct sftp_conn *, char *, u_int); 49int do_close(struct sftp_conn *, char *, u_int);