Searched refs:tcpopt (Results 1 – 4 of 4) sorted by relevance
| /mOS-networking-stack/core/src/ |
| H A D | tcp_util.c | 22 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 D | tcp_out.c | 90 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 D | tcp_util.h | 14 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 D | tcp_in.h | 122 uint32_t cur_ts, uint8_t *tcpopt, int len);
|