maintainers: remove email for amuckstot30 (#360059)
[NixPkgs.git] / pkgs / os-specific / linux / kernel / mptcp-config.nix
blob59b11167ac2265a3da2c07ac37d605062dd2c05e
1 { lib }:
2 with lib.kernel;
4     # DRM_AMDGPU = yes;
6     IPV6               = yes;
7     MPTCP              = yes;
8     IP_MULTIPLE_TABLES = yes;
10     # Enable advanced path-managers...
11     MPTCP_PM_ADVANCED = yes;
12     MPTCP_FULLMESH = yes;
13     MPTCP_NDIFFPORTS = yes;
14     # ... but use none by default.
15     # The default is safer if source policy routing is not setup.
16     DEFAULT_DUMMY = yes;
17     DEFAULT_MPTCP_PM.freeform = "default";
19     # MPTCP scheduler selection.
20     MPTCP_SCHED_ADVANCED = yes;
21     DEFAULT_MPTCP_SCHED.freeform = "default";
23     # Smarter TCP congestion controllers
24     TCP_CONG_LIA = module;
25     TCP_CONG_OLIA = module;
26     TCP_CONG_WVEGAS = module;
27     TCP_CONG_BALIA = module;