diff options
Diffstat (limited to 'nanohttp/nanohttp-response.h')
-rwxr-xr-x | nanohttp/nanohttp-response.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/nanohttp/nanohttp-response.h b/nanohttp/nanohttp-response.h index 63dd463..70e5348 100755 --- a/nanohttp/nanohttp-response.h +++ b/nanohttp/nanohttp-response.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-response.h,v 1.2 2004/10/28 10:30:46 snowdrop Exp $ + * $Id: nanohttp-response.h,v 1.3 2006/01/10 11:21:55 snowdrop Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -21,8 +21,8 @@ * * Email: ferhatayaz@yahoo.com ******************************************************************/ -#ifndef NANO_HTTP_RESPONSE_H -#define NANO_HTTP_RESPONSE_H +#ifndef NANO_HTTP_RESPONSE_H +#define NANO_HTTP_RESPONSE_H #include <nanohttp/nanohttp-stream.h> #include <nanohttp/nanohttp-common.h> @@ -41,17 +41,11 @@ typedef struct hresponse content_type_t *content_type; attachments_t *attachments; char root_part_id[150]; -}hresponse_t; +} hresponse_t; -herror_t hresponse_new_from_socket(hsocket_t sock, hresponse_t **out); -void hresponse_free(hresponse_t *res); +herror_t hresponse_new_from_socket (hsocket_t sock, hresponse_t ** out); +void hresponse_free (hresponse_t * res); #endif - - - - - - |