Home
last modified time | relevance | path

Searched refs:tx_sequence (Results 1 – 7 of 7) sorted by relevance

/NetX-Duo-v6.2.1/common/src/
Dnx_tcp_packet_send_syn.c85 VOID _nx_tcp_packet_send_syn(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence) in _nx_tcp_packet_send_syn() argument
323 _nx_tcp_packet_send_control(socket_ptr, NX_TCP_SYN_BIT, tx_sequence, in _nx_tcp_packet_send_syn()
328 _nx_tcp_packet_send_control(socket_ptr, (NX_TCP_SYN_BIT | NX_TCP_ACK_BIT), tx_sequence, in _nx_tcp_packet_send_syn()
333 socket_ptr -> nx_tcp_socket_tx_sequence_recover = tx_sequence; in _nx_tcp_packet_send_syn()
334 socket_ptr -> nx_tcp_socket_previous_highest_ack = tx_sequence; in _nx_tcp_packet_send_syn()
Dnx_tcp_packet_send_fin.c71 VOID _nx_tcp_packet_send_fin(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence) in _nx_tcp_packet_send_fin() argument
73 _nx_tcp_packet_send_control(socket_ptr, (NX_TCP_FIN_BIT | NX_TCP_ACK_BIT), tx_sequence, in _nx_tcp_packet_send_fin()
Dnx_tcp_packet_send_ack.c83 VOID _nx_tcp_packet_send_ack(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence) in _nx_tcp_packet_send_ack() argument
85 _nx_tcp_packet_send_control(socket_ptr, NX_TCP_ACK_BIT, tx_sequence, in _nx_tcp_packet_send_ack()
Dnx_tcp_packet_send_probe.c73 VOID _nx_tcp_packet_send_probe(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence, UCHAR data) in _nx_tcp_packet_send_probe() argument
76 _nx_tcp_packet_send_control(socket_ptr, NX_TCP_ACK_BIT, tx_sequence, in _nx_tcp_packet_send_probe()
Dnx_tcp_packet_send_control.c92 VOID _nx_tcp_packet_send_control(NX_TCP_SOCKET *socket_ptr, ULONG control_bits, ULONG tx_sequence, in _nx_tcp_packet_send_control() argument
224 tcp_header_ptr -> nx_tcp_sequence_number = tx_sequence; in _nx_tcp_packet_send_control()
/NetX-Duo-v6.2.1/test/regression/netxduo_test/
Dnetx_10_26_test.c37 static ULONG tx_sequence; variable
190 if(tx_sequence != client_socket.nx_tcp_socket_tx_sequence) in ntest_0_entry()
340 tx_sequence = client_socket.nx_tcp_socket_tx_sequence; in my_tcp_packet_receive_10_26()
/NetX-Duo-v6.2.1/common/inc/
Dnx_tcp.h316 VOID _nx_tcp_packet_send_ack(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence);
317 VOID _nx_tcp_packet_send_fin(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence);
319 VOID _nx_tcp_packet_send_syn(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence);
320 VOID _nx_tcp_packet_send_probe(NX_TCP_SOCKET *socket_ptr, ULONG tx_sequence, UCHAR data);
321 VOID _nx_tcp_packet_send_control(NX_TCP_SOCKET *socket_ptr, ULONG control_bits, ULONG tx_sequence,