comparison lib/ftpcommon.h @ 541:e46278e7ef1d

2004-8-21 Brian Masney <masneyb@gftp.org> * lib/rfc959.c lib/ftpcommon.h - added internal option to quote the filename in the SITE command. This is only enabled for servers that return UNIX in the SYST output. It is disabled if it is a BSD based FTP server * lib/sshv2.c (sshv2_start_login_sequence) - pass the search strings through gettext so that logins will work properly for non-english users * lib/pty.c (gftp_exec) - redirect STDERR of the child process to the opened pty so that stderr is shown properly in the log window
author masneyb
date Sat, 21 Aug 2004 14:40:41 +0000
parents d7ff8d2d43aa
children c197c8fb1e62
comparison
equal deleted inserted replaced
540:5dc503f04424 541:e46278e7ef1d
25 { 25 {
26 gftp_getline_buffer * datafd_rbuf, 26 gftp_getline_buffer * datafd_rbuf,
27 * dataconn_rbuf; 27 * dataconn_rbuf;
28 int data_connection; 28 int data_connection;
29 unsigned int is_ascii_transfer : 1, 29 unsigned int is_ascii_transfer : 1,
30 is_fxp_transfer : 1; 30 is_fxp_transfer : 1,
31 quote_filename : 1;
31 int (*auth_tls_start) (gftp_request * request); 32 int (*auth_tls_start) (gftp_request * request);
32 ssize_t (*data_conn_read) (gftp_request * request, void *ptr, size_t size, 33 ssize_t (*data_conn_read) (gftp_request * request, void *ptr, size_t size,
33 int fd); 34 int fd);
34 ssize_t (*data_conn_write) (gftp_request * request, const char *ptr, 35 ssize_t (*data_conn_write) (gftp_request * request, const char *ptr,
35 size_t size, int fd); 36 size_t size, int fd);