/openthread-3.4.0/third_party/tcplp/bsdtcp/ |
D | tcp_input.c | 104 tcp_do_segment(struct ip6_hdr* ip6, struct tcphdr *th, otMessage* msg, 115 cc_ack_received(struct tcpcb *tp, struct tcphdr *th, uint16_t type) in cc_ack_received() argument 117 tp->ccv->bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received() 139 tp->ccv->curack = th->th_ack; in cc_ack_received() 221 cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type) in cc_cong_signal() argument 284 if (th != NULL) in cc_cong_signal() 285 tp->ccv->curack = th->th_ack; in cc_cong_signal() 291 cc_post_recovery(struct tcpcb *tp, struct tcphdr *th) in cc_post_recovery() argument 297 tp->ccv->curack = th->th_ack; in cc_post_recovery() 323 cc_ecnpkt_handler(struct tcpcb *tp, struct tcphdr *th, uint8_t iptos) in cc_ecnpkt_handler() argument [all …]
|
D | tcp_reass.c | 54 tcp_reass(struct tcpcb* tp, struct tcphdr* th, int* tlenp, otMessage* data, off_t data_offset, stru… in tcp_reass() argument 68 if (th == NULL) in tcp_reass() 74 KASSERT(SEQ_GEQ(th->th_seq, tp->rcv_nxt), ("Adding past segment to the reassembly queue")); in tcp_reass() 75 offset = (size_t) (th->th_seq - tp->rcv_nxt); in tcp_reass() 83 if ((th->th_flags & TH_FIN) && (tp->reass_fin_index == -1)) { in tcp_reass() 121 tcp_reass(struct tcpcb *tp, struct tcphdr *th, int *tlenp, struct mbuf *m) 143 if (th == NULL) 162 if ((th->th_seq != tp->rcv_nxt || !TCPS_HAVEESTABLISHED(tp->t_state)) && 166 if ((s = tcp_log_addrs(&tp->t_inpcb->inp_inc, th, NULL, NULL))) { 184 if (th->th_seq != tp->rcv_nxt || !TCPS_HAVEESTABLISHED(tp->t_state)) { [all …]
|
D | tcp_subr.c | 218 struct tcphdr *th = (struct tcphdr *)tcp_ptr; in tcpip_fillheaders() local 241 th->th_sport = tp->lport; in tcpip_fillheaders() 242 th->th_dport = tp->fport; in tcpip_fillheaders() 243 th->th_seq = 0; in tcpip_fillheaders() 244 th->th_ack = 0; in tcpip_fillheaders() 247 th->th_off_x2 = (5 << TH_OFF_SHIFT); in tcpip_fillheaders() 248 th->th_flags = 0; in tcpip_fillheaders() 249 th->th_win = 0; in tcpip_fillheaders() 250 th->th_urp = 0; in tcpip_fillheaders() 251 th->th_sum = 0; /* in_pseudo() is called later for ipv4 */ in tcpip_fillheaders() [all …]
|
D | tcp_var.h | 383 void cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type); 437 #define BYTES_THIS_ACK(tp, th) (th->th_ack - tp->snd_una) argument 565 tcp_fields_to_host(struct tcphdr *th) in tcp_fields_to_host() argument 568 th->th_seq = ntohl(th->th_seq); in tcp_fields_to_host() 569 th->th_ack = ntohl(th->th_ack); in tcp_fields_to_host() 570 th->th_win = ntohs(th->th_win); in tcp_fields_to_host() 571 th->th_urp = ntohs(th->th_urp); in tcp_fields_to_host() 577 void tcp_dropwithreset(struct ip6_hdr* ip6, struct tcphdr *th, struct tcpcb *tp, otInstance* instan… 579 int tcp_input(struct ip6_hdr* ip6, struct tcphdr* th, otMessage* msg, struct tcpcb* tp, struct tcpc…
|
D | tcp_timewait.c | 309 tcp_twcheck(struct tcpcb* tp, struct tcphdr *th, int tlen) in tcp_twcheck() argument 319 thflags = th->th_flags; in tcp_twcheck() 361 if ((thflags & TH_SYN) && SEQ_GT(th->th_seq, tp->rcv_nxt)) { in tcp_twcheck() 382 seq = th->th_seq + tlen + (thflags & TH_SYN ? 1 : 0); in tcp_twcheck() 391 th->th_seq != tp->rcv_nxt || th->th_ack != tp->snd_nxt) in tcp_twcheck()
|
D | tcp_output.c | 112 struct tcphdr* th = NULL; in tcp_output() local 929 th = (struct tcphdr*) (&outbuf[0]); in tcp_output() 936 tcpip_fillheaders(tp, &ip6info, th); in tcp_output() 1016 th->th_seq = htonl(tp->snd_nxt); in tcp_output() 1018 th->th_seq = htonl(tp->snd_max); in tcp_output() 1020 th->th_seq = htonl(p->rxmit); in tcp_output() 1032 if (len > 0 && !tcp_timer_active(tp, TT_PERSIST) && SEQ_LT(ntohl(th->th_seq), tp->snd_max)) { in tcp_output() 1037 th->th_ack = htonl(tp->rcv_nxt); in tcp_output() 1039 bcopy(opt, th + 1, optlen); in tcp_output() 1040 th->th_off_x2 = ((sizeof (struct tcphdr) + optlen) >> 2) << TH_OFF_SHIFT; in tcp_output() [all …]
|
D | tcp_sack.c | 550 tcp_sack_partialack(struct tcpcb *tp, struct tcphdr *th) in tcp_sack_partialack() argument 557 if ((BYTES_THIS_ACK(tp, th) / tp->t_maxseg) >= 2) in tcp_sack_partialack()
|
/openthread-3.4.0/third_party/nlbuild-autotools/repo/third_party/autoconf/m4/ |
D | ax_pthread.m4 | 376 [pthread_t th; pthread_attr_t attr; 377 pthread_create(&th, 0, start_routine, 0); 378 pthread_join(th, 0);
|
/openthread-3.4.0/third_party/mbedtls/repo/docs/proposed/ |
D | psa-driver-interface.md | 539 …drivers, outputting a string $s_i$ and an entropy estimate $e_i$ on the $i$th call. It does so unt…
|