summaryrefslogtreecommitdiff
path: root/src/response.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-01-24 00:02:58 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2021-01-29 03:10:22 -0500
commitdb73879bf0d33cc9ddac5dc08fd9f05e6d0fca94 (patch)
tree7ca3d83744a7afc97c63afe3d1f153c7df0836ad /src/response.h
parentd9b956b938f0477e3bc39524aef96955ae268ae3 (diff)
downloadlighttpd-git-db73879bf0d33cc9ddac5dc08fd9f05e6d0fca94.tar.gz
[mod_ajp13] AJPv13 Tomcat connector for lighttpd
(experimental) AJPv13 protocol reference: https://tomcat.apache.org/connectors-doc/ajp/ajpv13a.html
Diffstat (limited to 'src/response.h')
-rw-r--r--src/response.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/response.h b/src/response.h
index 9daf58a9..bf7b7852 100644
--- a/src/response.h
+++ b/src/response.h
@@ -18,11 +18,11 @@ typedef struct http_cgi_opts_t {
} http_cgi_opts;
enum {
- BACKEND_UNSET = 0,
- BACKEND_PROXY,
- BACKEND_CGI,
- BACKEND_FASTCGI,
- BACKEND_SCGI
+ BACKEND_PROXY = 0
+ ,BACKEND_CGI
+ ,BACKEND_FASTCGI
+ ,BACKEND_SCGI
+ ,BACKEND_AJP13
};
typedef struct http_response_opts_t {