Searched refs:bottle_bw (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.3-release/sys/netinet/
H A Dsctp_header.h399 uint32_t bottle_bw; member in struct:sctp_pktdrop_chunk
H A Dsctp_cc_functions.c1151 uint32_t * bottle_bw, uint32_t * on_queue)
1158 *bottle_bw = ntohl(cp->bottle_bw);
1168 /* rtt is measured in micro seconds, bottle_bw in bytes per second */
1169 bw_avail = (uint32_t) (((uint64_t) (*bottle_bw) * net->rtt) / (uint64_t) 1000000);
1170 if (bw_avail > *bottle_bw) {
1175 * will be limited to the bottle_bw per second no matter if
1179 bw_avail = *bottle_bw;
1149 sctp_cwnd_update_after_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net, struct sctp_pktdrop_chunk *cp, uint32_t * bottle_bw, uint32_t * on_queue) argument
H A Dsctp_input.c4317 uint32_t bottle_bw, on_queue; local
4419 bottle_bw = ntohl(cp->bottle_bw);
4421 if (bottle_bw && on_queue) {
4423 if (bottle_bw > on_queue)
4424 a_rwnd = bottle_bw - on_queue;
4458 net, cp, &bottle_bw, &on_queue);
H A Dsctp_structs.h693 uint32_t * bottle_bw, uint32_t * on_queue);
H A Dsctp_output.c11530 drp->bottle_bw = htonl(spc);

Completed in 115 milliseconds