Browse Source

Removed unused option.

Mateusz Gralka 9 years ago
parent
commit
c585a95e87
2 changed files with 0 additions and 5 deletions
  1. 0 3
      docs/UserManual.md
  2. 0 2
      src/civetweb.c

+ 0 - 3
docs/UserManual.md

@@ -407,9 +407,6 @@ than the depth set here connection is refused.
 ### ssl_default_verify_paths `yes`
 ### ssl_default_verify_paths `yes`
 Loads default trusted certificates locations set at openssl compile time.
 Loads default trusted certificates locations set at openssl compile time.
 
 
-### ssl_forward_secrecy `yes`
-Enable [forward secrecy](https://en.wikipedia.org/wiki/Forward_secrecy).
-
 ### ssl_cipher_list
 ### ssl_cipher_list
 List of ciphers to present to the client. Entries should be separated by 
 List of ciphers to present to the client. Entries should be separated by 
 colons, commas or spaces.
 colons, commas or spaces.

+ 0 - 2
src/civetweb.c

@@ -1030,7 +1030,6 @@ enum {
 	SSL_CA_FILE,
 	SSL_CA_FILE,
 	SSL_VERIFY_DEPTH,
 	SSL_VERIFY_DEPTH,
 	SSL_DEFAULT_VERIFY_PATHS,
 	SSL_DEFAULT_VERIFY_PATHS,
-	SSL_FORWARD_SECRECY,
 	SSL_CIPHER_LIST,
 	SSL_CIPHER_LIST,
 	SSL_PROTOCOL_VERSION,
 	SSL_PROTOCOL_VERSION,
 #if defined(USE_WEBSOCKET)
 #if defined(USE_WEBSOCKET)
@@ -1097,7 +1096,6 @@ static struct mg_option config_options[] = {
     {"ssl_ca_file", CONFIG_TYPE_FILE, NULL},
     {"ssl_ca_file", CONFIG_TYPE_FILE, NULL},
     {"ssl_verify_depth", CONFIG_TYPE_NUMBER, "9"},
     {"ssl_verify_depth", CONFIG_TYPE_NUMBER, "9"},
     {"ssl_default_verify_paths", CONFIG_TYPE_BOOLEAN, "yes"},
     {"ssl_default_verify_paths", CONFIG_TYPE_BOOLEAN, "yes"},
-    {"ssl_forward_secrecy", CONFIG_TYPE_BOOLEAN, "yes"},
     {"ssl_cipher_list", CONFIG_TYPE_STRING, NULL},
     {"ssl_cipher_list", CONFIG_TYPE_STRING, NULL},
     {"ssl_protocol_version", CONFIG_TYPE_NUMBER, "0"},
     {"ssl_protocol_version", CONFIG_TYPE_NUMBER, "0"},
 #if defined(USE_WEBSOCKET)
 #if defined(USE_WEBSOCKET)