From 8684b8cf790b76fc68e2cc2b7f797c505c70ee2f Mon Sep 17 00:00:00 2001 From: snowdrop Date: Mon, 19 Dec 2005 14:18:26 +0000 Subject: pathed stuf from mailinglist after 1.0.4rc1 --- nanohttp/nanohttp-client.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'nanohttp/nanohttp-client.c') diff --git a/nanohttp/nanohttp-client.c b/nanohttp/nanohttp-client.c index 79d6b0a..cd13af8 100644 --- a/nanohttp/nanohttp-client.c +++ b/nanohttp/nanohttp-client.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: nanohttp-client.c,v 1.29 2005/12/19 14:06:16 snowdrop Exp $ +* $Id: nanohttp-client.c,v 1.30 2005/12/19 14:18:26 snowdrop Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -126,6 +126,20 @@ httpc_free(httpc_conn_t * conn) } +/*-------------------------------------------------- + FUNCTION: httpc_close_free + DESC: Close and free the given http client object. + ----------------------------------------------------*/ +void +httpc_close_free(httpc_conn_t * conn) +{ + if (conn == NULL) + return; + + hsocket_close(conn->sock); + httpc_free(conn); +} + /*-------------------------------------------------- FUNCTION: httpc_set_header -- cgit v1.1-32-gdbae