tcphdr is only used within LwIP.
 
Symbols
loading...
Files
loading...

tcphdr variable

Syntax

static struct tcp_hdr *tcphdr;

References

LocationReferrerText
tcp_in.c:75
static struct tcp_hdr *tcphdr;
tcp_in.c:138tcp_input()
tcphdr = (struct tcp_hdr *)p->payload;
tcp_in.c:175tcp_input()
hdrlen_bytes = TCPH_HDRLEN_BYTES(tcphdr);
tcp_in.c:228tcp_input()
tcphdr->src = lwip_ntohs(tcphdr->src);
tcp_in.c:229tcp_input()
tcphdr->dest = lwip_ntohs(tcphdr->dest);
tcp_in.c:230tcp_input()
seqno = tcphdr->seqno = lwip_ntohl(tcphdr->seqno);
tcp_in.c:231tcp_input()
ackno = tcphdr->ackno = lwip_ntohl(tcphdr->ackno);
tcp_in.c:232tcp_input()
tcphdr->wnd = lwip_ntohs(tcphdr->wnd);
tcp_in.c:234tcp_input()
flags = TCPH_FLAGS(tcphdr);
tcp_in.c:262tcp_input()
if (pcb->remote_port == tcphdr->src &&
tcp_in.c:263tcp_input()
pcb->local_port == tcphdr->dest &&
tcp_in.c:295tcp_input()
if (pcb->remote_port == tcphdr->src &&
tcp_in.c:296tcp_input()
pcb->local_port == tcphdr->dest &&
tcp_in.c:326tcp_input()
if (lpcb->local_port == tcphdr->dest) {
tcp_in.c:411tcp_input()
inseg.tcphdr = tcphdr;
tcp_in.c:576tcp_input()
if (!(TCPH_FLAGS(tcphdr) & TCP_RST)) {
tcp_in.c:580tcp_input()
ip_current_src_addr(), tcphdr->dest, tcphdr->src);
tcp_in.c:650tcp_listen_input()
ip_current_src_addr(), tcphdr->dest, tcphdr->src);
tcp_in.c:679tcp_listen_input()
npcb->remote_port = tcphdr->src;
tcp_in.c:702tcp_listen_input()
npcb->snd_wnd = tcphdr->wnd;
tcp_in.c:759tcp_timewait_input()
ip_current_src_addr(), tcphdr->dest, tcphdr->src);
tcp_in.c:863tcp_process()
pcb->snd_wnd = tcphdr->wnd;
tcp_in.c:912tcp_process()
ip_current_src_addr(), tcphdr->dest, tcphdr->src);
tcp_in.c:972tcp_process()
ip_current_src_addr(), tcphdr->dest, tcphdr->src);
tcp_in.c:1156tcp_receive()
(pcb->snd_wl2 == ackno && (u32_t)SND_WND_SCALE(pcb, tcphdr->wnd) > pcb->snd_wnd)) {
tcp_in.c:1157tcp_receive()
pcb->snd_wnd = SND_WND_SCALE(pcb, tcphdr->wnd);
tcp_in.c:1892tcp_get_next_optbyte()
u8_t *opts = (u8_t *)tcphdr + TCP_HLEN;

Data Use

Functions writing tcphdr
Functions reading tcphdr
all items filtered out
tcphdr
Type of tcphdr
tcphdr
all items filtered out