Skip to content

Commit

Permalink
Fix the values of the SC flags to have successive powers of 2
Browse files Browse the repository at this point in the history
  • Loading branch information
capflam committed Apr 13, 2016
1 parent 2b7b584 commit b9df33b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/yaws.hrl
Expand Up @@ -165,11 +165,11 @@
-define(SC_DIR_LISTINGS, 32).
-define(SC_DEFLATE, 64).
-define(SC_DIR_ALL_ZIP, 128).
-define(SC_DAV, 512).
-define(SC_FCGI_TRACE_PROTOCOL, 1024).
-define(SC_FCGI_LOG_APP_ERROR, 2048).
-define(SC_FORWARD_PROXY, 4096).
-define(SC_AUTH_SKIP_DOCROOT, 8192).
-define(SC_DAV, 256).
-define(SC_FCGI_TRACE_PROTOCOL, 512).
-define(SC_FCGI_LOG_APP_ERROR, 1024).
-define(SC_FORWARD_PROXY, 2048).
-define(SC_AUTH_SKIP_DOCROOT, 4096).



Expand Down

0 comments on commit b9df33b

Please sign in to comment.