Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dnsdist: Add a setting to control the number of stored sessions #7062

Merged
merged 2 commits into from Oct 16, 2018

Conversation

rgacogne
Copy link
Member

Short description

This allows setting a larger or smaller stored sessions cache, or even disabling it entirely. Note that we currently only supports stored sessions when the OpenSSL provider is used, as GnuTLS requires writing a custom cache and so far we did not care enough to implement it.

Checklist

I have:

  • read the CONTRIBUTING.md document
  • compiled this code
  • tested this code
  • included documentation (including possible behaviour changes)
  • documented the code
  • added or modified regression test(s)
  • added or modified unit test(s)

Copy link
Member

@chbruyand chbruyand left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@@ -1541,6 +1541,10 @@ void setupLuaConfig(bool client)
if (vars->count("sessionTickets")) {
frontend->d_enableTickets = boost::get<bool>((*vars)["sessionTickets"]);
}

if (vars->count("numberOfStoredSessions")) {
frontend->d_maxStoredSessions = boost::get<int>((*vars)["numberOfStoredSessions"]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe check for negative values and issue a warning ?

@rgacogne rgacogne merged commit d774c32 into PowerDNS:master Oct 16, 2018
@rgacogne rgacogne deleted the dnsdist-tls-stored-sessions branch October 16, 2018 13:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants