1f772f9feSLawrence Stewart.\" 2f772f9feSLawrence Stewart.\" Copyright (c) 2008-2009 Lawrence Stewart <lstewart@FreeBSD.org> 3f772f9feSLawrence Stewart.\" Copyright (c) 2010-2011 The FreeBSD Foundation 4f772f9feSLawrence Stewart.\" All rights reserved. 5f772f9feSLawrence Stewart.\" 6f772f9feSLawrence Stewart.\" Portions of this documentation were written at the Centre for Advanced 7f772f9feSLawrence Stewart.\" Internet Architectures, Swinburne University of Technology, Melbourne, 8f772f9feSLawrence Stewart.\" Australia by David Hayes and Lawrence Stewart under sponsorship from the 9f772f9feSLawrence Stewart.\" FreeBSD Foundation. 10f772f9feSLawrence Stewart.\" 11f772f9feSLawrence Stewart.\" Redistribution and use in source and binary forms, with or without 12f772f9feSLawrence Stewart.\" modification, are permitted provided that the following conditions 13f772f9feSLawrence Stewart.\" are met: 14f772f9feSLawrence Stewart.\" 1. Redistributions of source code must retain the above copyright 15f772f9feSLawrence Stewart.\" notice, this list of conditions and the following disclaimer. 16f772f9feSLawrence Stewart.\" 2. Redistributions in binary form must reproduce the above copyright 17f772f9feSLawrence Stewart.\" notice, this list of conditions and the following disclaimer in the 18f772f9feSLawrence Stewart.\" documentation and/or other materials provided with the distribution. 19f772f9feSLawrence Stewart.\" 20f772f9feSLawrence Stewart.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 21f772f9feSLawrence Stewart.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22f772f9feSLawrence Stewart.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23f772f9feSLawrence Stewart.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 24f772f9feSLawrence Stewart.\" ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25f772f9feSLawrence Stewart.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26f772f9feSLawrence Stewart.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27f772f9feSLawrence Stewart.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28f772f9feSLawrence Stewart.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29f772f9feSLawrence Stewart.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30f772f9feSLawrence Stewart.\" SUCH DAMAGE. 31f772f9feSLawrence Stewart.\" 328ea5eeb9SMichael Tuexen.Dd May 13, 2021 33f772f9feSLawrence Stewart.Dt MOD_CC 9 34f772f9feSLawrence Stewart.Os 35f772f9feSLawrence Stewart.Sh NAME 36f772f9feSLawrence Stewart.Nm mod_cc , 37f772f9feSLawrence Stewart.Nm DECLARE_CC_MODULE , 382433b5f1SKevin Lo.Nm CCV 39f772f9feSLawrence Stewart.Nd Modular Congestion Control 40f772f9feSLawrence Stewart.Sh SYNOPSIS 41d519cedbSGleb Smirnoff.In netinet/tcp.h 424644fda3SGleb Smirnoff.In netinet/cc/cc.h 43f772f9feSLawrence Stewart.In netinet/cc/cc_module.h 44f772f9feSLawrence Stewart.Fn DECLARE_CC_MODULE "ccname" "ccalgo" 452433b5f1SKevin Lo.Fn CCV "ccv" "what" 46f772f9feSLawrence Stewart.Sh DESCRIPTION 47f772f9feSLawrence StewartThe 48f772f9feSLawrence Stewart.Nm 49f772f9feSLawrence Stewartframework allows congestion control algorithms to be implemented as dynamically 50f772f9feSLawrence Stewartloadable kernel modules via the 51f772f9feSLawrence Stewart.Xr kld 4 52f772f9feSLawrence Stewartfacility. 53f772f9feSLawrence StewartTransport protocols can select from the list of available algorithms on a 54f772f9feSLawrence Stewartconnection-by-connection basis, or use the system default (see 55f772f9feSLawrence Stewart.Xr mod_cc 4 56f772f9feSLawrence Stewartfor more details). 57f772f9feSLawrence Stewart.Pp 58f772f9feSLawrence Stewart.Nm 59f772f9feSLawrence Stewartmodules are identified by an 60f772f9feSLawrence Stewart.Xr ascii 7 61f772f9feSLawrence Stewartname and set of hook functions encapsulated in a 62f772f9feSLawrence Stewart.Vt "struct cc_algo" , 63f772f9feSLawrence Stewartwhich has the following members: 64f772f9feSLawrence Stewart.Bd -literal -offset indent 65f772f9feSLawrence Stewartstruct cc_algo { 66f772f9feSLawrence Stewart char name[TCP_CA_NAME_MAX]; 67f772f9feSLawrence Stewart int (*mod_init) (void); 68f772f9feSLawrence Stewart int (*mod_destroy) (void); 69b8d60729SRandall Stewart size_t (*cc_data_sz)(void); 70b8d60729SRandall Stewart int (*cb_init) (struct cc_var *ccv, void *ptr); 71f772f9feSLawrence Stewart void (*cb_destroy) (struct cc_var *ccv); 72f772f9feSLawrence Stewart void (*conn_init) (struct cc_var *ccv); 73f772f9feSLawrence Stewart void (*ack_received) (struct cc_var *ccv, uint16_t type); 74f772f9feSLawrence Stewart void (*cong_signal) (struct cc_var *ccv, uint32_t type); 75f772f9feSLawrence Stewart void (*post_recovery) (struct cc_var *ccv); 76f772f9feSLawrence Stewart void (*after_idle) (struct cc_var *ccv); 77d519cedbSGleb Smirnoff int (*ctl_output)(struct cc_var *, struct sockopt *, void *); 78b8d60729SRandall Stewart void (*rttsample)(struct cc_var *, uint32_t, uint32_t, uint32_t); 79b8d60729SRandall Stewart void (*newround)(struct cc_var *, uint32_t); 80f772f9feSLawrence Stewart}; 81f772f9feSLawrence Stewart.Ed 82f772f9feSLawrence Stewart.Pp 83f772f9feSLawrence StewartThe 84f772f9feSLawrence Stewart.Va name 85f772f9feSLawrence Stewartfield identifies the unique name of the algorithm, and should be no longer than 86f772f9feSLawrence StewartTCP_CA_NAME_MAX-1 characters in length (the TCP_CA_NAME_MAX define lives in 87f772f9feSLawrence Stewart.In netinet/tcp.h 88f772f9feSLawrence Stewartfor compatibility reasons). 89f772f9feSLawrence Stewart.Pp 90f772f9feSLawrence StewartThe 91f772f9feSLawrence Stewart.Va mod_init 92f772f9feSLawrence Stewartfunction is called when a new module is loaded into the system but before the 93f772f9feSLawrence Stewartregistration process is complete. 94f772f9feSLawrence StewartIt should be implemented if a module needs to set up some global state prior to 95f772f9feSLawrence Stewartbeing available for use by new connections. 96f772f9feSLawrence StewartReturning a non-zero value from 97f772f9feSLawrence Stewart.Va mod_init 98f772f9feSLawrence Stewartwill cause the loading of the module to fail. 99f772f9feSLawrence Stewart.Pp 100f772f9feSLawrence StewartThe 101f772f9feSLawrence Stewart.Va mod_destroy 102f772f9feSLawrence Stewartfunction is called prior to unloading an existing module from the kernel. 103f772f9feSLawrence StewartIt should be implemented if a module needs to clean up any global state before 104f772f9feSLawrence Stewartbeing removed from the kernel. 105f772f9feSLawrence StewartThe return value is currently ignored. 106f772f9feSLawrence Stewart.Pp 107f772f9feSLawrence StewartThe 108b8d60729SRandall Stewart.Va cc_data_sz 109b8d60729SRandall Stewartfunction is called by the socket option code to get the size of 110b8d60729SRandall Stewartdata that the 111b8d60729SRandall Stewart.Va cb_init 112b8d60729SRandall Stewartfunction needs. 113b8d60729SRandall StewartThe socket option code then preallocates the modules memory so that the 114b8d60729SRandall Stewart.Va cb_init 115b8d60729SRandall Stewartfunction will not fail (the socket option code uses M_WAITOK with 116b8d60729SRandall Stewartno locks held to do this). 117b8d60729SRandall Stewart.Pp 118b8d60729SRandall StewartThe 119f772f9feSLawrence Stewart.Va cb_init 120f772f9feSLawrence Stewartfunction is called when a TCP control block 121f772f9feSLawrence Stewart.Vt struct tcpcb 122f772f9feSLawrence Stewartis created. 123f772f9feSLawrence StewartIt should be implemented if a module needs to allocate memory for storing 124f772f9feSLawrence Stewartprivate per-connection state. 125f772f9feSLawrence StewartReturning a non-zero value from 126f772f9feSLawrence Stewart.Va cb_init 127f772f9feSLawrence Stewartwill cause the connection set up to be aborted, terminating the connection as a 128f772f9feSLawrence Stewartresult. 129b8d60729SRandall StewartNote that the ptr argument passed to the function should be checked to 130b8d60729SRandall Stewartsee if it is non-NULL, if so it is preallocated memory that the cb_init function 131b8d60729SRandall Stewartmust use instead of calling malloc itself. 132f772f9feSLawrence Stewart.Pp 133f772f9feSLawrence StewartThe 134f772f9feSLawrence Stewart.Va cb_destroy 135f772f9feSLawrence Stewartfunction is called when a TCP control block 136f772f9feSLawrence Stewart.Vt struct tcpcb 137f772f9feSLawrence Stewartis destroyed. 138f772f9feSLawrence StewartIt should be implemented if a module needs to free memory allocated in 139f772f9feSLawrence Stewart.Va cb_init . 140f772f9feSLawrence Stewart.Pp 141f772f9feSLawrence StewartThe 142f772f9feSLawrence Stewart.Va conn_init 143f772f9feSLawrence Stewartfunction is called when a new connection has been established and variables are 144f772f9feSLawrence Stewartbeing initialised. 145f772f9feSLawrence StewartIt should be implemented to initialise congestion control algorithm variables 146f772f9feSLawrence Stewartfor the newly established connection. 147f772f9feSLawrence Stewart.Pp 148f772f9feSLawrence StewartThe 149f772f9feSLawrence Stewart.Va ack_received 150f772f9feSLawrence Stewartfunction is called when a TCP acknowledgement (ACK) packet is received. 151f772f9feSLawrence StewartModules use the 152f772f9feSLawrence Stewart.Fa type 153f772f9feSLawrence Stewartargument as an input to their congestion management algorithms. 154f772f9feSLawrence StewartThe ACK types currently reported by the stack are CC_ACK and CC_DUPACK. 155f772f9feSLawrence StewartCC_ACK indicates the received ACK acknowledges previously unacknowledged data. 156f772f9feSLawrence StewartCC_DUPACK indicates the received ACK acknowledges data we have already received 157f772f9feSLawrence Stewartan ACK for. 158f772f9feSLawrence Stewart.Pp 159f772f9feSLawrence StewartThe 160f772f9feSLawrence Stewart.Va cong_signal 161f772f9feSLawrence Stewartfunction is called when a congestion event is detected by the TCP stack. 162f772f9feSLawrence StewartModules use the 163f772f9feSLawrence Stewart.Fa type 164f772f9feSLawrence Stewartargument as an input to their congestion management algorithms. 165f772f9feSLawrence StewartThe congestion event types currently reported by the stack are CC_ECN, CC_RTO, 166f772f9feSLawrence StewartCC_RTO_ERR and CC_NDUPACK. 167f772f9feSLawrence StewartCC_ECN is reported when the TCP stack receives an explicit congestion notification 168f772f9feSLawrence Stewart(RFC3168). 169f772f9feSLawrence StewartCC_RTO is reported when the retransmission time out timer fires. 170f772f9feSLawrence StewartCC_RTO_ERR is reported if the retransmission time out timer fired in error. 171f772f9feSLawrence StewartCC_NDUPACK is reported if N duplicate ACKs have been received back-to-back, 172f772f9feSLawrence Stewartwhere N is the fast retransmit duplicate ack threshold (N=3 currently as per 173f772f9feSLawrence StewartRFC5681). 174f772f9feSLawrence Stewart.Pp 175f772f9feSLawrence StewartThe 176f772f9feSLawrence Stewart.Va post_recovery 177f772f9feSLawrence Stewartfunction is called after the TCP connection has recovered from a congestion event. 178f772f9feSLawrence StewartIt should be implemented to adjust state as required. 179f772f9feSLawrence Stewart.Pp 180f772f9feSLawrence StewartThe 181f772f9feSLawrence Stewart.Va after_idle 182f772f9feSLawrence Stewartfunction is called when data transfer resumes after an idle period. 183f772f9feSLawrence StewartIt should be implemented to adjust state as required. 184f772f9feSLawrence Stewart.Pp 185f772f9feSLawrence StewartThe 186d519cedbSGleb Smirnoff.Va ctl_output 187d519cedbSGleb Smirnofffunction is called when 188d519cedbSGleb Smirnoff.Xr getsockopt 2 189d519cedbSGleb Smirnoffor 190d519cedbSGleb Smirnoff.Xr setsockopt 2 191d519cedbSGleb Smirnoffis called on a 192d519cedbSGleb Smirnoff.Xr tcp 4 193d519cedbSGleb Smirnoffsocket with the 194d519cedbSGleb Smirnoff.Va struct sockopt 195d519cedbSGleb Smirnoffpointer forwarded unmodified from the TCP control, and a 196d519cedbSGleb Smirnoff.Va void * 197d519cedbSGleb Smirnoffpointer to algorithm specific argument. 198d519cedbSGleb Smirnoff.Pp 199d519cedbSGleb SmirnoffThe 200b8d60729SRandall Stewart.Va rttsample 201b8d60729SRandall Stewartfunction is called to pass round trip time information to the 202b8d60729SRandall Stewartcongestion controller. 203b8d60729SRandall StewartThe additional arguments to the function include the microsecond RTT 204b8d60729SRandall Stewartthat is being noted, the number of times that the data being 205b8d60729SRandall Stewartacknowledged was retransmitted as well as the flightsize at send. 206b8d60729SRandall StewartFor transports that do not track flightsize at send, this variable 207b8d60729SRandall Stewartwill be the current cwnd at the time of the call. 208b8d60729SRandall Stewart.Pp 209b8d60729SRandall StewartThe 210b8d60729SRandall Stewart.Va newround 211b8d60729SRandall Stewartfunction is called each time a new round trip time begins. 212b8d60729SRandall StewartThe montonically increasing round number is also passed to the 213b8d60729SRandall Stewartcongestion controller as well. 214b8d60729SRandall StewartThis can be used for various purposes by the congestion controller (e.g Hystart++). 215b8d60729SRandall Stewart.Pp 216b8d60729SRandall StewartNote that currently not all TCP stacks call the 217b8d60729SRandall Stewart.Va rttsample 218b8d60729SRandall Stewartand 219b8d60729SRandall Stewart.Va newround 220*359fc7ebSJens Schweikhardtfunction so dependency on these functions is also 221*359fc7ebSJens Schweikhardtdependent upon which TCP stack is in use. 222b8d60729SRandall Stewart.Pp 223b8d60729SRandall StewartThe 224f772f9feSLawrence Stewart.Fn DECLARE_CC_MODULE 225f772f9feSLawrence Stewartmacro provides a convenient wrapper around the 226f772f9feSLawrence Stewart.Xr DECLARE_MODULE 9 227f772f9feSLawrence Stewartmacro, and is used to register a 228f772f9feSLawrence Stewart.Nm 229f772f9feSLawrence Stewartmodule with the 230f772f9feSLawrence Stewart.Nm 231f772f9feSLawrence Stewartframework. 232f772f9feSLawrence StewartThe 233f772f9feSLawrence Stewart.Fa ccname 234f772f9feSLawrence Stewartargument specifies the module's name. 235f772f9feSLawrence StewartThe 236f772f9feSLawrence Stewart.Fa ccalgo 237f772f9feSLawrence Stewartargument points to the module's 238f772f9feSLawrence Stewart.Vt struct cc_algo . 239f772f9feSLawrence Stewart.Pp 240f772f9feSLawrence Stewart.Nm 241f772f9feSLawrence Stewartmodules must instantiate a 242f772f9feSLawrence Stewart.Vt struct cc_algo , 243f772f9feSLawrence Stewartbut are only required to set the name field, and optionally any of the function 244f772f9feSLawrence Stewartpointers. 245b8d60729SRandall StewartNote that if a module defines the 246b8d60729SRandall Stewart.Va cb_init 247b8d60729SRandall Stewartfunction it also must define a 248b8d60729SRandall Stewart.Va cc_data_sz 249b8d60729SRandall Stewartfunction. 250b8d60729SRandall StewartThis is because when switching from one congestion control 251b8d60729SRandall Stewartmodule to another the socket option code will preallocate memory for the 252b8d60729SRandall Stewart.Va cb_init 25332068667SChristian Bruefferfunction. 25432068667SChristian BruefferIf no memory is allocated by the modules 255b8d60729SRandall Stewart.Va cb_init 256b8d60729SRandall Stewartthen the 257b8d60729SRandall Stewart.Va cc_data_sz 258b8d60729SRandall Stewartfunction should return 0. 259b8d60729SRandall Stewart.Pp 260f772f9feSLawrence StewartThe stack will skip calling any function pointer which is NULL, so there is no 261b8d60729SRandall Stewartrequirement to implement any of the function pointers (with the exception of 262*359fc7ebSJens Schweikhardtthe cb_init <-> cc_data_sz dependency noted above). 263f772f9feSLawrence StewartUsing the C99 designated initialiser feature to set fields is encouraged. 264f772f9feSLawrence Stewart.Pp 265f772f9feSLawrence StewartEach function pointer which deals with congestion control state is passed a 266f772f9feSLawrence Stewartpointer to a 267f772f9feSLawrence Stewart.Vt struct cc_var , 268f772f9feSLawrence Stewartwhich has the following members: 269f772f9feSLawrence Stewart.Bd -literal -offset indent 270f772f9feSLawrence Stewartstruct cc_var { 271f772f9feSLawrence Stewart void *cc_data; 272f772f9feSLawrence Stewart int bytes_this_ack; 273f772f9feSLawrence Stewart tcp_seq curack; 274f772f9feSLawrence Stewart uint32_t flags; 275f772f9feSLawrence Stewart int type; 276f772f9feSLawrence Stewart union ccv_container { 277f772f9feSLawrence Stewart struct tcpcb *tcp; 278f772f9feSLawrence Stewart struct sctp_nets *sctp; 279f772f9feSLawrence Stewart } ccvc; 280b8d60729SRandall Stewart uint16_t nsegs; 281b8d60729SRandall Stewart uint8_t labc; 282f772f9feSLawrence Stewart}; 283f772f9feSLawrence Stewart.Ed 284f772f9feSLawrence Stewart.Pp 285f772f9feSLawrence Stewart.Vt struct cc_var 286f772f9feSLawrence Stewartgroups congestion control related variables into a single, embeddable structure 287f772f9feSLawrence Stewartand adds a layer of indirection to accessing transport protocol control blocks. 288f772f9feSLawrence StewartThe eventual goal is to allow a single set of 289f772f9feSLawrence Stewart.Nm 290f772f9feSLawrence Stewartmodules to be shared between all congestion aware transport protocols, though 291f772f9feSLawrence Stewartcurrently only 292f772f9feSLawrence Stewart.Xr tcp 4 293f772f9feSLawrence Stewartis supported. 294f772f9feSLawrence Stewart.Pp 295f772f9feSLawrence StewartTo aid the eventual transition towards this goal, direct use of variables from 296f772f9feSLawrence Stewartthe transport protocol's data structures is strongly discouraged. 297f772f9feSLawrence StewartHowever, it is inevitable at the current time to require access to some of these 298f772f9feSLawrence Stewartvariables, and so the 2992433b5f1SKevin Lo.Fn CCV 300f772f9feSLawrence Stewartmacro exists as a convenience accessor. 301f772f9feSLawrence StewartThe 302f772f9feSLawrence Stewart.Fa ccv 303f772f9feSLawrence Stewartargument points to the 304f772f9feSLawrence Stewart.Vt struct cc_var 305f772f9feSLawrence Stewartpassed into the function by the 306f772f9feSLawrence Stewart.Nm 307f772f9feSLawrence Stewartframework. 308f772f9feSLawrence StewartThe 309f772f9feSLawrence Stewart.Fa what 310f772f9feSLawrence Stewartargument specifies the name of the variable to access. 311f772f9feSLawrence Stewart.Pp 312f772f9feSLawrence StewartApart from the 313f772f9feSLawrence Stewart.Va type 314f772f9feSLawrence Stewartand 315f772f9feSLawrence Stewart.Va ccv_container 316f772f9feSLawrence Stewartfields, the remaining fields in 317f772f9feSLawrence Stewart.Vt struct cc_var 318f772f9feSLawrence Stewartare for use by 319f772f9feSLawrence Stewart.Nm 320f772f9feSLawrence Stewartmodules. 321f772f9feSLawrence Stewart.Pp 322f772f9feSLawrence StewartThe 323f772f9feSLawrence Stewart.Va cc_data 324f772f9feSLawrence Stewartfield is available for algorithms requiring additional per-connection state to 325f772f9feSLawrence Stewartattach a dynamic memory pointer to. 326f772f9feSLawrence StewartThe memory should be allocated and attached in the module's 327f772f9feSLawrence Stewart.Va cb_init 328f772f9feSLawrence Stewarthook function. 329f772f9feSLawrence Stewart.Pp 330f772f9feSLawrence StewartThe 331f772f9feSLawrence Stewart.Va bytes_this_ack 332f772f9feSLawrence Stewartfield specifies the number of new bytes acknowledged by the most recently 333f772f9feSLawrence Stewartreceived ACK packet. 334f772f9feSLawrence StewartIt is only valid in the 335f772f9feSLawrence Stewart.Va ack_received 336f772f9feSLawrence Stewarthook function. 337f772f9feSLawrence Stewart.Pp 338f772f9feSLawrence StewartThe 339f772f9feSLawrence Stewart.Va curack 340f772f9feSLawrence Stewartfield specifies the sequence number of the most recently received ACK packet. 341f772f9feSLawrence StewartIt is only valid in the 342f772f9feSLawrence Stewart.Va ack_received , 343f772f9feSLawrence Stewart.Va cong_signal 344f772f9feSLawrence Stewartand 345f772f9feSLawrence Stewart.Va post_recovery 346f772f9feSLawrence Stewarthook functions. 347f772f9feSLawrence Stewart.Pp 348f772f9feSLawrence StewartThe 349f772f9feSLawrence Stewart.Va flags 350f772f9feSLawrence Stewartfield is used to pass useful information from the stack to a 351f772f9feSLawrence Stewart.Nm 352f772f9feSLawrence Stewartmodule. 353f772f9feSLawrence StewartThe CCF_ABC_SENTAWND flag is relevant in 354f772f9feSLawrence Stewart.Va ack_received 355f772f9feSLawrence Stewartand is set when appropriate byte counting (RFC3465) has counted a window's worth 356f772f9feSLawrence Stewartof bytes has been sent. 357f772f9feSLawrence StewartIt is the module's responsibility to clear the flag after it has processed the 358f772f9feSLawrence Stewartsignal. 359f772f9feSLawrence StewartThe CCF_CWND_LIMITED flag is relevant in 360f772f9feSLawrence Stewart.Va ack_received 361f772f9feSLawrence Stewartand is set when the connection's ability to send data is currently constrained 362f772f9feSLawrence Stewartby the value of the congestion window. 36373bbeaa5SGlen BarberAlgorithms should use the absence of this flag being set to avoid accumulating 364f772f9feSLawrence Stewarta large difference between the congestion window and send window. 365b8d60729SRandall Stewart.Pp 366b8d60729SRandall StewartThe 367b8d60729SRandall Stewart.Va nsegs 368b8d60729SRandall Stewartvariable is used to pass in how much compression was done by the local 369b8d60729SRandall StewartLRO system. 370b8d60729SRandall StewartSo for example if LRO pushed three in-order acknowledgements into 371b8d60729SRandall Stewartone acknowledgement the variable would be set to three. 372b8d60729SRandall Stewart.Pp 373b8d60729SRandall StewartThe 374b8d60729SRandall Stewart.Va labc 375b8d60729SRandall Stewartvariable is used in conjunction with the CCF_USE_LOCAL_ABC flag 376b8d60729SRandall Stewartto override what labc variable the congestion controller will use 377b8d60729SRandall Stewartfor this particular acknowledgement. 378f772f9feSLawrence Stewart.Sh SEE ALSO 3795547f9fbSKevin Lo.Xr cc_cdg 4 , 380f772f9feSLawrence Stewart.Xr cc_chd 4 , 381f772f9feSLawrence Stewart.Xr cc_cubic 4 , 3828ea5eeb9SMichael Tuexen.Xr cc_dctcp 4 , 383f772f9feSLawrence Stewart.Xr cc_hd 4 , 384f772f9feSLawrence Stewart.Xr cc_htcp 4 , 385f772f9feSLawrence Stewart.Xr cc_newreno 4 , 386f772f9feSLawrence Stewart.Xr cc_vegas 4 , 387f772f9feSLawrence Stewart.Xr mod_cc 4 , 388f772f9feSLawrence Stewart.Xr tcp 4 389f772f9feSLawrence Stewart.Sh ACKNOWLEDGEMENTS 390f772f9feSLawrence StewartDevelopment and testing of this software were made possible in part by grants 391f772f9feSLawrence Stewartfrom the FreeBSD Foundation and Cisco University Research Program Fund at 392f772f9feSLawrence StewartCommunity Foundation Silicon Valley. 393f772f9feSLawrence Stewart.Sh FUTURE WORK 394f772f9feSLawrence StewartIntegrate with 395f772f9feSLawrence Stewart.Xr sctp 4 . 396f772f9feSLawrence Stewart.Sh HISTORY 397f772f9feSLawrence StewartThe modular Congestion Control (CC) framework first appeared in 398f772f9feSLawrence Stewart.Fx 9.0 . 399f772f9feSLawrence Stewart.Pp 400f772f9feSLawrence StewartThe framework was first released in 2007 by James Healy and Lawrence Stewart 401f772f9feSLawrence Stewartwhilst working on the NewTCP research project at Swinburne University of 402f772f9feSLawrence StewartTechnology's Centre for Advanced Internet Architectures, Melbourne, Australia, 403f772f9feSLawrence Stewartwhich was made possible in part by a grant from the Cisco University Research 404f772f9feSLawrence StewartProgram Fund at Community Foundation Silicon Valley. 405f772f9feSLawrence StewartMore details are available at: 406f772f9feSLawrence Stewart.Pp 407f772f9feSLawrence Stewarthttp://caia.swin.edu.au/urp/newtcp/ 408f772f9feSLawrence Stewart.Sh AUTHORS 409f772f9feSLawrence Stewart.An -nosplit 410f772f9feSLawrence StewartThe 411f772f9feSLawrence Stewart.Nm 412f772f9feSLawrence Stewartframework was written by 4138a7314fcSBaptiste Daroussin.An Lawrence Stewart Aq Mt lstewart@FreeBSD.org , 4148a7314fcSBaptiste Daroussin.An James Healy Aq Mt jimmy@deefa.com 415f772f9feSLawrence Stewartand 4168a7314fcSBaptiste Daroussin.An David Hayes Aq Mt david.hayes@ieee.org . 417f772f9feSLawrence Stewart.Pp 418f772f9feSLawrence StewartThis manual page was written by 4198a7314fcSBaptiste Daroussin.An David Hayes Aq Mt david.hayes@ieee.org 420f772f9feSLawrence Stewartand 4218a7314fcSBaptiste Daroussin.An Lawrence Stewart Aq Mt lstewart@FreeBSD.org . 422