comparison lib/https.c @ 174:e643d287fe32

2003-6-8 Brian Masney <masneyb@gftp.org> * lib/gftp.h lib/sslcommon.c - added ssl_register_module(). This function registers the configuration variables for the SSL engine. Right now, the only variable is the entropy source * lib/https.c (https_register_module) - call ssl_register_module(). Multiple protocols will be able to call this function, it will only be initialized once
author masneyb
date Mon, 09 Jun 2003 01:07:33 +0000
parents 4c288d05b26a
children 13ca1defdc75
comparison
equal deleted inserted replaced
173:4c288d05b26a 174:e643d287fe32
52 #endif 52 #endif
53 53
54 void 54 void
55 https_register_module (void) 55 https_register_module (void)
56 { 56 {
57 #ifdef USE_SSL
58 ssl_register_module ();
59 #endif
57 } 60 }
58 61
59 62
60 int 63 int
61 https_init (gftp_request * request) 64 https_init (gftp_request * request)