From ffdad830aa3b07cea5e2c2060ab239e422cb8589 Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Thu, 22 Feb 2001 08:42:09 +0000 Subject: [PATCH] just making server_signature enum decl easier to read (for both humans and C::Scan) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88274 13f79535-47bb-0310-9956-ffa450edef68 --- include/http_core.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/include/http_core.h b/include/http_core.h index 05c09bff69..db9bf037b0 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -353,6 +353,13 @@ typedef struct { typedef unsigned char allow_options_t; typedef unsigned char overrides_t; +typedef enum { + srv_sig_unset, + srv_sig_off, + srv_sig_on, + srv_sig_withmail +} server_signature_e; + typedef struct { /* path of the directory/regex/etc. see also d_is_fnmatch below */ char *d; @@ -439,8 +446,9 @@ typedef struct { long limit_xml_body; /* limit on bytes in XML request msg body */ /* logging options */ - enum { srv_sig_unset, srv_sig_off, srv_sig_on, - srv_sig_withmail } server_signature; + + server_signature_e server_signature; + int loglevel; /* Access control */ -- 2.50.1