aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/ChangeLog4
-rw-r--r--include/http.h3
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 97ae7b63f..000dc56b2 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2003-03-11 David Shaw <[email protected]>
+
+ * http.h: Add HTTP_FLAG_TRY_SRV.
+
2003-02-11 David Shaw <[email protected]>
* types.h: Try and use uint64_t for a 64-bit type.
diff --git a/include/http.h b/include/http.h
index 7e79ed2c1..b53ac9f9f 100644
--- a/include/http.h
+++ b/include/http.h
@@ -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 {