Commit 45150250 authored by Nils Goroll's avatar Nils Goroll

use NOT_IMPLEMENTED flag also for accept_filter and tcp_fastopen

parent 3a6c4d5f
......@@ -37,9 +37,13 @@ PARAM(
/* max */ NULL,
/* default */ "on",
/* units */ "bool",
#if defined(HAVE_ACCEPT_FILTERS)
/* flags */ MUST_RESTART,
#else
/* flags */ NOT_IMPLEMENTED,
#endif
/* s-text */
"Enable kernel accept-filters (if available in the kernel).",
"Enable kernel accept-filters.",
/* l-text */ NULL,
/* func */ NULL
)
......@@ -1000,9 +1004,13 @@ PARAM(
/* max */ NULL,
/* default */ "off",
/* units */ "bool",
#if defined(HAVE_TCP_FASTOPEN)
/* flags */ MUST_RESTART,
#else
/* flags */ NOT_IMPLEMENTED,
#endif
/* s-text */
"Enable TCP Fast Open extension (if available in the kernel).",
"Enable TCP Fast Open extension.",
/* l-text */ NULL,
/* func */ NULL
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment