瀏覽代碼

Removed unused option.

Mateusz Gralka 9 年之前
父節點
當前提交
c585a95e87
共有 2 個文件被更改,包括 0 次插入5 次删除
  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`
 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
 List of ciphers to present to the client. Entries should be separated by 
 colons, commas or spaces.

+ 0 - 2
src/civetweb.c

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