diff options
Diffstat (limited to 'nanohttp/nanohttp-server.c')
-rw-r--r-- | nanohttp/nanohttp-server.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nanohttp/nanohttp-server.c b/nanohttp/nanohttp-server.c index cc5517b..2da65b7 100644 --- a/nanohttp/nanohttp-server.c +++ b/nanohttp/nanohttp-server.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: nanohttp-server.c,v 1.43 2006/01/11 10:54:43 snowdrop Exp $ +* $Id: nanohttp-server.c,v 1.44 2006/01/18 14:53:13 mrcsys Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -167,6 +167,10 @@ httpd_init (int argc, char *argv[]) */ #endif +#ifdef HAVE_SSL + start_ssl(); +#endif + /* create socket */ status = hsocket_init (&_httpd_socket); if (status != H_OK) |