Searched refs:TCP_ACK (Results 1 – 5 of 5) sorted by relevance
| /u-boot/net/ |
| A D | tcp.c | 274 case TCP_SYN | TCP_ACK: in tcp_set_tcp_header() 275 case TCP_ACK: in tcp_set_tcp_header() 291 case TCP_RST | TCP_ACK: in tcp_set_tcp_header() 299 case (TCP_FIN | TCP_ACK): in tcp_set_tcp_header() 300 case (TCP_FIN | TCP_ACK | TCP_PUSH): in tcp_set_tcp_header() 509 u8 tcp_ack = tcp_flags & TCP_ACK; in tcp_state_machine() 535 action = TCP_SYN | TCP_ACK; in tcp_state_machine() 551 action |= TCP_ACK; in tcp_state_machine() 585 action = TCP_ACK + TCP_RST; in tcp_state_machine() 596 action = TCP_PUSH | TCP_ACK; in tcp_state_machine() [all …]
|
| A D | fastboot_tcp.c | 67 fastboot_tcp_answer(TCP_ACK | TCP_PUSH, len + 8); in fastboot_tcp_send_message() 96 fastboot_tcp_send_packet(TCP_ACK | TCP_PUSH, in fastboot_tcp_handler_ipv4() 103 fastboot_tcp_answer(TCP_FIN | TCP_ACK, 0); in fastboot_tcp_handler_ipv4()
|
| A D | wget.c | 338 wget_send(TCP_ACK, tcp_seq_num, tcp_ack_num, len); in wget_handler() 348 wget_send(TCP_ACK, tcp_seq_num, tcp_ack_num, in wget_handler() 354 wget_send(action | TCP_ACK | TCP_FIN, in wget_handler()
|
| /u-boot/test/cmd/ |
| A D | wget.c | 73 tcp_send->tcp_flags = TCP_SYN | TCP_ACK; in sb_syn_handler() 128 tcp_send->tcp_flags = TCP_ACK; in sb_ack_handler() 133 tcp_send->tcp_flags = TCP_ACK | TCP_FIN; in sb_ack_handler() 176 else if (tcp->tcp_flags & TCP_ACK && !(tcp->tcp_flags & TCP_SYN)) in sb_http_handler()
|
| /u-boot/include/net/ |
| A D | tcp.h | 62 #define TCP_ACK 0x10 /* Acknowledgment of data received */ macro
|
Completed in 16 milliseconds