From df494ade428ddb4cb6a9a6f8b3885cf1b2478f06 Mon Sep 17 00:00:00 2001 From: mrcsys Date: Wed, 18 Jan 2006 14:53:13 +0000 Subject: Added start_ssl function to initialize library. --- nanohttp/nanohttp-client.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'nanohttp/nanohttp-client.c') diff --git a/nanohttp/nanohttp-client.c b/nanohttp/nanohttp-client.c index e61e5af..6f7d864 100644 --- a/nanohttp/nanohttp-client.c +++ b/nanohttp/nanohttp-client.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: nanohttp-client.c,v 1.33 2006/01/10 11:29:05 snowdrop Exp $ +* $Id: nanohttp-client.c,v 1.34 2006/01/18 14:53:13 mrcsys Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -55,6 +55,9 @@ httpc_init(int argc, char *argv[]) { hoption_init_args(argc, argv); hsocket_module_init(); +#ifdef HAVE_SSL + start_ssl(); +#endif return H_OK; } -- cgit v1.1-32-gdbae