Mercurial > gftp.yaz
comparison lib/bookmark.c @ 173:4c288d05b26a
2003-6-8 Brian Masney <masneyb@gftp.org>
* lib/bookmark.c lib/gftp.h lib/https.c lib/local.c lib/misc.c
lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c
src/text/gftp-text.c src/gtk/gftp-gtk.c - made the init function for
all the protocols return an integer instead of nothing. If there was an
error setting up the protocol, GFTP_EFATAL should be returned and the
connection should be aborted. The HTTPS protocol uses this to return if
SSL support was not compiled in
* lib/protocols.c src/text/gftp-text.c src/gtk/dnd.c
src/gtk/gftp-gtk.c src/gtk/menu-items.c - have gftp_parse_url() log the
error messages to the user. This shouldn't have been done in the
individual ports
* lib/https.c - only initialize the SSL engine the first time a SSL
connection is made.
author | masneyb |
---|---|
date | Mon, 09 Jun 2003 00:53:20 +0000 |
parents | c505d9ba9d53 |
children | aec4b4541d3a |
comparison
equal
deleted
inserted
replaced
172:9273b56e7529 | 173:4c288d05b26a |
---|---|
50 bookmark_register_module (void) | 50 bookmark_register_module (void) |
51 { | 51 { |
52 } | 52 } |
53 | 53 |
54 | 54 |
55 void | 55 int |
56 bookmark_init (gftp_request * request) | 56 bookmark_init (gftp_request * request) |
57 { | 57 { |
58 g_return_if_fail (request != NULL); | 58 g_return_val_if_fail (request != NULL, GFTP_EFATAL); |
59 | 59 |
60 request->protonum = GFTP_BOOKMARK_NUM; | 60 request->protonum = GFTP_BOOKMARK_NUM; |
61 request->init = bookmark_init; | 61 request->init = bookmark_init; |
62 request->read_function = NULL; | 62 request->read_function = NULL; |
63 request->write_function = NULL; | 63 request->write_function = NULL; |
88 request->need_userpass = 0; | 88 request->need_userpass = 0; |
89 request->use_threads = 0; | 89 request->use_threads = 0; |
90 request->use_cache = 0; | 90 request->use_cache = 0; |
91 request->always_connected = 0; | 91 request->always_connected = 0; |
92 gftp_set_config_options (request); | 92 gftp_set_config_options (request); |
93 | |
94 return (0); | |
93 } | 95 } |
94 | 96 |