* http.h: Add HTTP_FLAG_TRY_SRV.

This commit is contained in:
David Shaw 2003-03-11 17:32:59 +00:00
parent d804867c17
commit a07c1bc4ac
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-03-11 David Shaw <dshaw@jabberwocky.com>
* http.h: Add HTTP_FLAG_TRY_SRV.
2003-02-11 David Shaw <dshaw@jabberwocky.com>
* types.h: Try and use uint64_t for a 64-bit type.

View File

@ -51,7 +51,8 @@ typedef enum {
enum { /* put flag values into an enum, so that gdb can display them */
HTTP_FLAG_TRY_PROXY = 1,
HTTP_FLAG_NO_SHUTDOWN = 2
HTTP_FLAG_NO_SHUTDOWN = 2,
HTTP_FLAG_TRY_SRV = 3
};
struct http_context {