Home
last modified time | relevance | path

Searched refs:lnet (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
Dsctp_timer.c811 struct sctp_nets *lnet; local
813 TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) {
814 if (net == lnet) {
815 sctp_log_cwnd(stcb, lnet, 1, SCTP_CWND_LOG_FROM_T3);
817 sctp_log_cwnd(stcb, lnet, 0, SCTP_CWND_LOG_FROM_T3);
Dsctp_cc_functions.c1094 struct sctp_nets *lnet; in sctp_cwnd_update_after_timeout() local
1098 TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) { in sctp_cwnd_update_after_timeout()
1099 t_ssthresh += lnet->ssthresh; in sctp_cwnd_update_after_timeout()
1100 t_cwnd += lnet->cwnd; in sctp_cwnd_update_after_timeout()
1101 srtt = lnet->lastsa; in sctp_cwnd_update_after_timeout()
1104 t_ucwnd_sbw += (uint64_t)lnet->cwnd / (uint64_t)srtt; in sctp_cwnd_update_after_timeout()
Dsctputil.c644 struct sctp_nets *lnet; in sctp_auditing() local
733 TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) { in sctp_auditing()
734 tot_out += lnet->flight_size; in sctp_auditing()
747 TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) { in sctp_auditing()
751 if ((chk->whoTo == lnet) && in sctp_auditing()
756 if (lnet->flight_size != tot_out) { in sctp_auditing()
758 (void *)lnet, lnet->flight_size, in sctp_auditing()
760 lnet->flight_size = tot_out; in sctp_auditing()
Dsctp_input.c309 struct sctp_nets *lnet; in sctp_process_init() local
322 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { in sctp_process_init()
323 lnet->ssthresh = asoc->peers_rwnd; in sctp_process_init()
325 sctp_log_cwnd(stcb, lnet, 0, SCTP_CWND_INITIALIZATION); in sctp_process_init()
Dsctp_pcb.c5187 struct sctp_nets *lnet; local
5189 lnet = TAILQ_FIRST(&asoc->nets);
5215 asoc->primary_destination = sctp_find_alternate_net(stcb, lnet, 0);
Dsctp_output.c6116 struct sctp_nets *lnet; local
6125 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
6126 if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
6127 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {