Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 638 B view raw
1{ lib }: 2with lib.kernel; 3{ 4 # DRM_AMDGPU = yes; 5 6 IPV6 = yes; 7 MPTCP = yes; 8 IP_MULTIPLE_TABLES = yes; 9 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"; 18 19 # MPTCP scheduler selection. 20 MPTCP_SCHED_ADVANCED = yes; 21 DEFAULT_MPTCP_SCHED.freeform = "default"; 22 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; 28}