summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd/httpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/httpd/httpd.h')
-rw-r--r--usr.sbin/httpd/httpd.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/usr.sbin/httpd/httpd.h b/usr.sbin/httpd/httpd.h
index 67cb45e138d..3d150a53ac9 100644
--- a/usr.sbin/httpd/httpd.h
+++ b/usr.sbin/httpd/httpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: httpd.h,v 1.141 2018/10/01 19:24:09 benno Exp $ */
+/* $OpenBSD: httpd.h,v 1.142 2018/10/11 09:52:22 benno Exp $ */
/*
* Copyright (c) 2006 - 2015 Reyk Floeter <reyk@openbsd.org>
@@ -100,11 +100,10 @@
enum httpchunk {
TOREAD_UNLIMITED = -1,
- TOREAD_HTTP_INIT = -2,
- TOREAD_HTTP_HEADER = -3,
- TOREAD_HTTP_CHUNK_LENGTH = -4,
- TOREAD_HTTP_CHUNK_TRAILER = -5,
- TOREAD_HTTP_NONE = -6,
+ TOREAD_HTTP_HEADER = -2,
+ TOREAD_HTTP_CHUNK_LENGTH = -3,
+ TOREAD_HTTP_CHUNK_TRAILER = -4,
+ TOREAD_HTTP_NONE = -5,
TOREAD_HTTP_RANGE = TOREAD_HTTP_CHUNK_LENGTH
};