/[anubis]/anubis/src/ssl.c
ViewVC logotype

Diff of /anubis/src/ssl.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by gray, Sun Apr 6 20:37:59 2003 UTC revision 1.6 by polak, Thu May 8 21:11:14 2003 UTC
# Line 61  init_ssl_libs(void) Line 61  init_ssl_libs(void)
61          return;          return;
62  }  }
63    
64  static char *  static const char *
65  _ssl_strerror(int rc)  _ssl_strerror(int rc)
66  {  {
67          return ERR_error_string(rc, NULL);          return ERR_error_string(rc, NULL);
# Line 231  init_ssl_server(void) Line 231  init_ssl_server(void)
231  void *  void *
232  start_ssl_server(int sd_client)  start_ssl_server(int sd_client)
233  {  {
234            SESS *sd;
235          SSL *ssl = 0;          SSL *ssl = 0;
236          SSL_CTX *ctx = init_ssl_server();          SSL_CTX *ctx = init_ssl_server();
237                    
# Line 277  cipher_info(SSL *ssl_local) Line 278  cipher_info(SSL *ssl_local)
278                  SSL_CIPHER_get_bits(cipher, &bits);                  SSL_CIPHER_get_bits(cipher, &bits);
279                  info(VERBOSE,                  info(VERBOSE,
280                       ngettext("%s connection using %s (%u bit)",                       ngettext("%s connection using %s (%u bit)",
281                                "%s connection using %s (%u bits)"                                "%s connection using %s (%u bits)",
282                                bits),                                bits),
283                       SSL_CIPHER_get_version(cipher),                       SSL_CIPHER_get_version(cipher),
284                       SSL_CIPHER_get_name(cipher), bits);                       SSL_CIPHER_get_name(cipher), bits);

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26