Mercurial > gftp.yaz
view lib/https.c @ 381:1c86bcb0b232
2003-2-1 Brian Masney <masneyb@gftp.org>
* lib/protocols.c (gftp_get_dir_listing, gftp_get_all_subdirs) - don't
modify the file variable if it begins with a /. Do not touch the
destfile variable if it already exists
author | masneyb |
---|---|
date | Sun, 01 Feb 2004 22:14:15 +0000 |
parents | 13ca1defdc75 |
children | 1ffdbc487a70 |
line wrap: on
line source
/*****************************************************************************/ /* https.c - General purpose routines for the HTTPS protocol */ /* 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., 59 Temple Place - Suite 330, Boston, MA 02111 USA */ /*****************************************************************************/ #include "gftp.h" #include "httpcommon.h" static const char cvsid[] = "$Id$"; #ifdef USE_SSL static int https_get_next_file (gftp_request * request, gftp_file * fle, int fd) { rfc2068_params * params; int ret, resetptr; params = request->protocol_data; if (request->cached) { params->real_read_function = gftp_fd_read; request->write_function = gftp_fd_write; resetptr = 1; } else resetptr = 0; ret = rfc2068_get_next_file (request, fle, fd); if (resetptr) { params->real_read_function = gftp_ssl_read; request->write_function = gftp_ssl_write; } return (ret); } #endif void https_register_module (void) { #ifdef USE_SSL ssl_register_module (); #endif } int https_init (gftp_request * request) { #ifdef USE_SSL rfc2068_params * params; int ret; g_return_val_if_fail (request != NULL, GFTP_EFATAL); if ((ret = gftp_protocols[GFTP_HTTP_NUM].init (request)) < 0) return (ret); params = request->protocol_data; request->init = https_init; request->post_connect = gftp_ssl_session_setup; params->real_read_function = gftp_ssl_read; request->write_function = gftp_ssl_write; request->get_next_file = https_get_next_file; request->url_prefix = g_strdup ("https"); if ((ret = gftp_ssl_startup (NULL)) < 0) return (ret); return (0); #else request->logging_function (gftp_logging_error, request, _("HTTPS Support unavailable since SSL support was not compiled in. Aborting connection.\n")); return (GFTP_EFATAL); #endif }