Searched refs:TCP_SEQ_LT (Results 1 – 9 of 9) sorted by relevance
/third_party/lwip/ |
D | backport-tcp-fix-sequence-number-comparison.patch | 20 -#define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) 24 +#define TCP_SEQ_LT(a,b) (((u32_t)((u32_t)(a) - (u32_t)(b)) & 0x80000000u) != 0) 25 +#define TCP_SEQ_LEQ(a,b) (!(TCP_SEQ_LT(b,a))) 26 +#define TCP_SEQ_GT(a,b) TCP_SEQ_LT(b,a)
|
D | 0056-fix-tso-small-packet-drop-in-kernel-server.patch | 28 - if (TCP_SEQ_LT(lwip_ntohl(seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->seqno))) { 32 - TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { 67 - if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { 250 + if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { 271 + if (TCP_SEQ_LT(lwip_ntohl(tmp_seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->se… 275 + TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(tmp_seg->…
|
D | 0059-fix-last_unsent-last_unacked.patch | 21 - if (TCP_SEQ_LT(ackno + 1, pcb->snd_nxt)) { 33 + if (TCP_SEQ_LT(ackno + 1, pcb->snd_nxt)) {
|
D | 0038-add-tso.patch | 168 + if (TCP_SEQ_LT(lwip_ntohl(seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->seqno))) { 172 + TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { 206 + if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) {
|
D | 0041-optimite-pcb-list-limit-send-size-and-ack-now.patch | 144 if (TCP_SEQ_LT(lwip_ntohl(seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->seqno))) { 292 - TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { 299 + TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) {
|
D | 0046-add-dataack-when-recv-too-many-acks-with-data.patch | 29 + if (TCP_SEQ_LT(ackno + 1, pcb->snd_nxt)) {
|
/third_party/lwip/src/core/ |
D | tcp_in.c | 1189 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) || 1190 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) || 1379 if (pcb->rttest && TCP_SEQ_LT(pcb->rtseq, ackno)) { 1480 if (TCP_SEQ_LT(seqno, pcb->rcv_nxt)) { 1709 … u32_t sackbeg = TCP_SEQ_LT(seqno, pcb->ooseq->tcphdr->seqno) ? seqno : pcb->ooseq->tcphdr->seqno; 1740 if (TCP_SEQ_LT(seqno, next->tcphdr->seqno)) { 2087 if ((pcb->flags & TF_SACK) == 0 || !TCP_SEQ_LT(left, right)) { 2157 if (TCP_SEQ_LT(pcb->rcv_sacks[unused_idx].left, seq)) { 2191 if (TCP_SEQ_LT(pcb->rcv_sacks[i].left, seq)) {
|
D | tcp_out.c | 1387 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_output() 1402 if (TCP_SEQ_LT(lwip_ntohl(seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->seqno))) { in tcp_output() 1406 … TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_output() 1763 TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_rexmit() 2191 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_zero_window_probe()
|
/third_party/lwip/src/include/lwip/priv/ |
D | tcp_priv.h | 109 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) macro
|