Home
last modified time | relevance | path

Searched refs:tcpopt (Results 1 – 4 of 4) sorted by relevance

/mOS-networking-stack/core/src/
H A Dtcp_util.c22 opt = *(tcpopt + i++); in ParseTCPOptions()
30 optlen = *(tcpopt + i++); in ParseTCPOptions()
69 opt = *(tcpopt + i++); in ParseTCPTimestamp()
76 optlen = *(tcpopt + i++); in ParseTCPTimestamp()
104 opt = *(tcpopt + i++); in ParseSACKOption()
111 optlen = *(tcpopt + i++); in ParseSACKOption()
199 printf("%u ", tcpopt[i]); in PrintTCPOptions()
204 opt = *(tcpopt + i++); in PrintTCPOptions()
212 optlen = *(tcpopt + i++); in PrintTCPOptions()
220 mss += *(tcpopt + i++); in PrintTCPOptions()
[all …]
H A Dtcp_out.c90 tcpopt[i++] = TCP_OPT_MSS; in GenerateTCPOptions()
92 tcpopt[i++] = mss >> 8; in GenerateTCPOptions()
93 tcpopt[i++] = mss % 256; in GenerateTCPOptions()
98 tcpopt[i++] = TCP_OPT_NOP; in GenerateTCPOptions()
99 tcpopt[i++] = TCP_OPT_NOP; in GenerateTCPOptions()
109 tcpopt[i++] = TCP_OPT_NOP; in GenerateTCPOptions()
110 tcpopt[i++] = TCP_OPT_NOP; in GenerateTCPOptions()
117 tcpopt[i++] = TCP_OPT_NOP; in GenerateTCPOptions()
149 uint8_t *tcpopt; in SendTCPPacketStandalone() local
194 tcpopt[0] = TCP_OPT_NOP; in SendTCPPacketStandalone()
[all …]
/mOS-networking-stack/core/src/include/
H A Dtcp_util.h14 uint32_t cur_ts, uint8_t *tcpopt, int len);
18 struct tcp_timestamp *ts, uint8_t *tcpopt, int len);
23 uint32_t ack_seq, uint8_t *tcpopt, int len);
30 PrintTCPOptions(uint8_t *tcpopt, int len);
H A Dtcp_in.h122 uint32_t cur_ts, uint8_t *tcpopt, int len);