Skip to content

Commit

Permalink
Fix a setting issue which cause QUIC not work
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlst committed Jan 24, 2020
1 parent 894ce22 commit ff8cbb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/configctx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ SslContext *ConfigCtx::newSSLContext(const XmlNode *pNode,
}
}

config.m_iEnableSpdy = getLongValue(pNode, "enableSpdy", 0, 7, 7);
config.m_iEnableSpdy = getLongValue(pNode, "enableSpdy", 0, 15, 15);
config.m_iEnableCache = getLongValue(pNode, "sslSessionCache", 0, 1, 0);
config.m_iInsecReneg = !getLongValue(pNode, "regenProtection", 0, 1, 1);
config.m_iEnableTicket = getLongValue(pNode, "sslSessionTickets",
Expand Down
2 changes: 1 addition & 1 deletion src/main/lshttpdmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
/***
* Do not change the below format, it will be set correctly while packing the code
*/
#define BUILDTIME " (built: Wed Jan 22 22:14:41 UTC 2020)"
#define BUILDTIME " (built: Fri Jan 24 16:41:37 UTC 2020)"

#define GlobalServerSessionHooks (LsiApiHooks::getServerSessionHooks())

Expand Down

0 comments on commit ff8cbb4

Please sign in to comment.