Searched refs:tcp_flags (Results 1 - 3 of 3) sorted by relevance

/u-boot/net/
H A Dtcp.c252 b->ip.hdr.tcp_flags = action;
277 b->ip.hdr.tcp_flags = action;
311 b->ip.hdr.tcp_flags = action | TCP_PUSH | TCP_ACK;
503 static u8 tcp_state_machine(u8 tcp_flags, u32 tcp_seq_num, int payload_len) argument
505 u8 tcp_fin = tcp_flags & TCP_FIN;
506 u8 tcp_syn = tcp_flags & TCP_SYN;
507 u8 tcp_rst = tcp_flags & TCP_RST;
508 u8 tcp_push = tcp_flags & TCP_PUSH;
509 u8 tcp_ack = tcp_flags & TCP_ACK;
514 * tcp_flags ar
[all...]
/u-boot/test/cmd/
H A Dwget.c73 tcp_send->tcp_flags = TCP_SYN | TCP_ACK;
128 tcp_send->tcp_flags = TCP_ACK;
133 tcp_send->tcp_flags = TCP_ACK | TCP_FIN;
174 if (tcp->tcp_flags == TCP_SYN)
176 else if (tcp->tcp_flags & TCP_ACK && !(tcp->tcp_flags & TCP_SYN))
/u-boot/include/net/
H A Dtcp.h48 u8 tcp_flags; member in struct:ip_tcp_hdr

Completed in 43 milliseconds