Mercurial > gftp.yaz
view lib/ftpcommon.h @ 858:10e2ce91e26c
2006-11-30 Brian Masney <masneyb@gftp.org>
* lib/rfc959.c lib/sshv2.c src/uicommon/gftpui.c - don't abort the
entire file transfer if there is a permission denied at some point
during the file transfer. Give the user an error at the very end if
there were any errors. (closes #328550)
author | masneyb |
---|---|
date | Fri, 01 Dec 2006 00:57:50 +0000 |
parents | 14858879916f |
children |
line wrap: on
line source
/*****************************************************************************/ /* ftpcommon.h - common data structures for RFC959 and FTPS */ /* Copyright (C) 1998-2003 Brian Masney <masneyb@gftp.org> */ /* */ /* This program is free software; you can redistribute it and/or modify */ /* it under the terms of the GNU General Public License as published by */ /* the Free Software Foundation; either version 2 of the License, or */ /* (at your option) any later version. */ /* */ /* This program is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ /* GNU General Public License for more details. */ /* */ /* You should have received a copy of the GNU General Public License */ /* along with this program; if not, write to the Free Software */ /* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /*****************************************************************************/ /* $Id$ */ #include "gftp.h" struct rfc959_params_tag { gftp_getline_buffer * datafd_rbuf, * dataconn_rbuf; int data_connection; unsigned int is_ascii_transfer : 1, is_fxp_transfer : 1; int (*auth_tls_start) (gftp_request * request); ssize_t (*data_conn_read) (gftp_request * request, void *ptr, size_t size, int fd); ssize_t (*data_conn_write) (gftp_request * request, const char *ptr, size_t size, int fd); }; typedef struct rfc959_params_tag rfc959_parms; int rfc959_send_command ( gftp_request * request, const char *command, ssize_t command_len, int read_response, int dont_try_to_reconnect );