diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/http.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 6d5ab6f9c..4edc52167 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2001-04-23 Werner Koch <[email protected]> + + * http.h: New flag HTTP_FLAG_NO_SHUTDOWN. + 2001-04-13 Werner Koch <[email protected]> * iobuf.h: Removed iobuf_fopen. diff --git a/include/http.h b/include/http.h index 5cfd4b396..3d13f8266 100644 --- a/include/http.h +++ b/include/http.h @@ -50,7 +50,8 @@ typedef enum { } HTTP_REQ_TYPE; enum { /* put flag values into an enum, so that gdb can display them */ - HTTP_FLAG_TRY_PROXY = 1 + HTTP_FLAG_TRY_PROXY = 1, + HTTP_FLAG_NO_SHUTDOWN = 2, }; struct http_context { |