Home
last modified time | relevance | path

Searched refs:TCP_SEQ_LT (Results 1 – 9 of 9) sorted by relevance

/third_party/lwip/
Dbackport-tcp-fix-sequence-number-comparison.patch20 -#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)
D0056-fix-tso-small-packet-drop-in-kernel-server.patch28 - 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->…
D0059-fix-last_unsent-last_unacked.patch21 - if (TCP_SEQ_LT(ackno + 1, pcb->snd_nxt)) {
33 + if (TCP_SEQ_LT(ackno + 1, pcb->snd_nxt)) {
D0038-add-tso.patch168 + 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)) {
D0041-optimite-pcb-list-limit-send-size-and-ack-now.patch144 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))) {
D0046-add-dataack-when-recv-too-many-acks-with-data.patch29 + if (TCP_SEQ_LT(ackno + 1, pcb->snd_nxt)) {
/third_party/lwip/src/core/
Dtcp_in.c1189 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)) {
Dtcp_out.c1387 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()
1406TCP_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/
Dtcp_priv.h109 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) macro