Searched refs:TCP_ACK (Results 1 - 5 of 5) sorted by relevance

/u-boot/net/
H A Dtcp.c274 case TCP_SYN | TCP_ACK:
275 case TCP_ACK:
291 case TCP_RST | TCP_ACK:
299 case (TCP_FIN | TCP_ACK):
300 case (TCP_FIN | TCP_ACK | TCP_PUSH):
311 b->ip.hdr.tcp_flags = action | TCP_PUSH | TCP_ACK;
509 u8 tcp_ack = tcp_flags & TCP_ACK;
535 action = TCP_SYN | TCP_ACK;
551 action |= TCP_ACK;
578 action = action | TCP_FIN | TCP_PUSH | TCP_ACK;
[all...]
H A Dfastboot_tcp.c67 fastboot_tcp_answer(TCP_ACK | TCP_PUSH, len + 8);
96 fastboot_tcp_send_packet(TCP_ACK | TCP_PUSH,
103 fastboot_tcp_answer(TCP_FIN | TCP_ACK, 0);
H A Dwget.c416 wget_send(TCP_ACK, tcp_seq_num, tcp_ack_num, len);
426 wget_send(TCP_ACK, tcp_seq_num, tcp_ack_num,
432 wget_send(action | TCP_ACK | TCP_FIN,
/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;
176 else if (tcp->tcp_flags & TCP_ACK && !(tcp->tcp_flags & TCP_SYN))
/u-boot/include/net/
H A Dtcp.h62 #define TCP_ACK 0x10 /* Acknowledgment of data received */ macro

Completed in 123 milliseconds