diff options
Diffstat (limited to 'nanohttp/nanohttp-stream.h')
-rwxr-xr-x | nanohttp/nanohttp-stream.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nanohttp/nanohttp-stream.h b/nanohttp/nanohttp-stream.h index b8b345c..d0a234a 100755 --- a/nanohttp/nanohttp-stream.h +++ b/nanohttp/nanohttp-stream.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-stream.h,v 1.4 2004/10/29 09:27:05 snowdrop Exp $ + * $Id: nanohttp-stream.h,v 1.5 2004/11/02 23:09:27 snowdrop Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -93,11 +93,11 @@ typedef struct http_input_stream int received; int content_length; int chunk_size; - byte_t connection_closed;
-
+ byte_t connection_closed; + /* file handling */ - FILE *fd;
- char filename[255];
+ FILE *fd; + char filename[255]; int deleteOnExit; /* default is 0 */ }http_input_stream_t; |