diff options
author | loos <loos@FreeBSD.org> | 2016-04-16 22:02:32 +0000 |
---|---|---|
committer | loos <loos@FreeBSD.org> | 2016-04-16 22:02:32 +0000 |
commit | 99b723c5685433e242785c80e652cd942050615c (patch) | |
tree | 3d8f2f118c62dcbef39be628d704a68325ede001 /sbin/pfctl/pfctl_parser.h | |
parent | b3015d8f283375f76efedb46756e8a04027a4066 (diff) | |
download | FreeBSD-src-99b723c5685433e242785c80e652cd942050615c.zip FreeBSD-src-99b723c5685433e242785c80e652cd942050615c.tar.gz |
MFC r287009, r287120 and r298131:
Add ALTQ(9) support for the CoDel algorithm.
CoDel is a parameterless queue discipline that handles variable bandwidth
and RTT.
It can be used as the single queue discipline on an interface or as a sub
discipline of existing queue disciplines such as PRIQ, CBQ, HFSC, FAIRQ.
Obtained from: pfSense
Sponsored by: Rubicon Communications (Netgate)
Diffstat (limited to 'sbin/pfctl/pfctl_parser.h')
-rw-r--r-- | sbin/pfctl/pfctl_parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/pfctl/pfctl_parser.h b/sbin/pfctl/pfctl_parser.h index 8a4e84e..2b7fea7 100644 --- a/sbin/pfctl/pfctl_parser.h +++ b/sbin/pfctl/pfctl_parser.h @@ -168,6 +168,7 @@ struct node_queue_opt { int qtype; union { struct cbq_opts cbq_opts; + struct codel_opts codel_opts; struct priq_opts priq_opts; struct node_hfsc_opts hfsc_opts; struct node_fairq_opts fairq_opts; |