Commit 86b5e4f8 authored by Doug MacEachern's avatar Doug MacEachern
Browse files

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
parent 9f81ad08
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -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 */