Mercurial > gftp.yaz
view lib/httpcommon.h @ 188:836822c2d4e7
2003-6-16 Brian Masney <masneyb@gftp.org>
* lib/protocols.c (gftp_string_to_utf8) - return if request is NULL
author | masneyb |
---|---|
date | Tue, 17 Jun 2003 10:54:59 +0000 |
parents | c505d9ba9d53 |
children | cf4098008615 |
line wrap: on
line source
/*****************************************************************************/ /* httpcommon.h - common data structures for RFC2068 and HTTPS */ /* 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$ */ typedef struct rfc2068_params_tag { gftp_getline_buffer * rbuf; unsigned long read_bytes, content_length, chunk_size; unsigned int chunked_transfer : 1; ssize_t (*real_read_function) ( gftp_request * request, void *ptr, size_t size, int fd ); } rfc2068_params; int rfc2068_get_next_file ( gftp_request * request, gftp_file * fle, int fd );