comparison lib/rfc2068.c @ 485:7334a74db6f6

2004-6-15 Brian Masney <masneyb@gftp.org> * lib/protocols.c - added supported for multiline VMS directory listings. Also, parse the date correctly for single line VMS directory listings * lib/gftp.h lib/local.c lib/rfc2068.c lib/rfc959.c lib/sshv.c - added function pointer get_next_dirlist_line to gftp_request structure. This will retrieve the next line of input for the directory listing. This is only implemented in the FTP protocol at the moment. It shouldn't be needed in the other protocols
author masneyb
date Wed, 16 Jun 2004 02:57:02 +0000
parents 075f89b4395c
children 39e9945288ea
comparison
equal deleted inserted replaced
484:632036c6e4a4 485:7334a74db6f6
920 request->put_next_file_chunk = NULL; 920 request->put_next_file_chunk = NULL;
921 request->end_transfer = rfc2068_end_transfer; 921 request->end_transfer = rfc2068_end_transfer;
922 request->abort_transfer = rfc2068_end_transfer; /* NOTE: uses end_transfer */ 922 request->abort_transfer = rfc2068_end_transfer; /* NOTE: uses end_transfer */
923 request->list_files = rfc2068_list_files; 923 request->list_files = rfc2068_list_files;
924 request->get_next_file = rfc2068_get_next_file; 924 request->get_next_file = rfc2068_get_next_file;
925 request->get_next_dirlist_line = NULL;
925 request->get_file_size = rfc2068_get_file_size; 926 request->get_file_size = rfc2068_get_file_size;
926 request->chdir = rfc2068_chdir; 927 request->chdir = rfc2068_chdir;
927 request->rmdir = NULL; 928 request->rmdir = NULL;
928 request->rmfile = NULL; 929 request->rmfile = NULL;
929 request->mkdir = NULL; 930 request->mkdir = NULL;