diff lib/gftp.h @ 895:4ab11f70a7f4

2007-3-15 Brian Masney <masneyb@gftp.org> * lib/sshv2.c lib/gftp.h lib/rfc959.c lib/protocols.c lib/fsp.c lib/local.c lib/rfc2068.c src/uicommon/gftpui.c - removed fd argument to *_get_file(), *_put_file() and gftp_transfer_file().
author masneyb
date Fri, 16 Mar 2007 02:44:07 +0000
parents 14476a8a4d2b
children f716c8dbeaff
line wrap: on
line diff
--- a/lib/gftp.h	Fri Mar 16 02:33:05 2007 +0000
+++ b/lib/gftp.h	Fri Mar 16 02:44:07 2007 +0000
@@ -435,11 +435,9 @@
   void (*disconnect) 			( gftp_request * request );
   off_t (*get_file) 			( gftp_request * request, 
 					  const char *filename, 
-					  int fd,
 					  off_t startsize );
   int (*put_file) 			( gftp_request * request, 
 					  const char *filename, 
-					  int fd,
 					  off_t startsize,
 					  off_t totalsize );
   off_t (*transfer_file) 		( gftp_request * fromreq, 
@@ -891,22 +889,18 @@
 
 off_t gftp_get_file 			( gftp_request * request, 
 					  const char *filename, 
-					  int fd,
 					  off_t startsize );
 
 int gftp_put_file 			( gftp_request * request, 
 					  const char *filename, 
-					  int fd,
 					  off_t startsize,
 					  off_t totalsize );
 
 off_t gftp_transfer_file 		( gftp_request *fromreq, 
 					  const char *fromfile, 
-					  int fromfd,
 					  off_t fromsize, 
 					  gftp_request *toreq, 
 					  const char *tofile, 
-					  int tofd,
 					  off_t tosize );
 
 ssize_t gftp_get_next_file_chunk 	( gftp_request * request,