Searched refs:tsecr (Results 1 – 6 of 6) sorted by relevance
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | test_tcp_custom_syncookie.c | 223 __u32 *tsval, *tsecr; in tcp_parse_option() local 260 tsecr = next(ctx, 4); in tcp_parse_option() 261 if (*opsize == TCPOLEN_TIMESTAMP && tsval && tsecr) { in tcp_parse_option() 263 ctx->attrs.rcv_tsecr = get_unaligned_be32(tsecr); in tcp_parse_option()
|
| /linux/include/net/netfilter/ |
| H A D | nf_synproxy.h | 41 u32 tsecr; member
|
| /linux/net/ipv6/ |
| H A D | tcp_ipv6.c | 840 u32 ack, u32 win, u32 tsval, u32 tsecr, in tcp_v6_send_response() argument 855 if (tsecr) in tcp_v6_send_response() 893 if (tsecr) { in tcp_v6_send_response() 897 *topt++ = htonl(tsecr); in tcp_v6_send_response() 1126 u32 ack, u32 win, u32 tsval, u32 tsecr, int oif, in tcp_v6_send_ack() argument 1130 tcp_v6_send_response(sk, skb, seq, ack, win, tsval, tsecr, oif, 0, in tcp_v6_send_ack()
|
| /linux/net/sched/ |
| H A D | sch_cake.c | 1132 u32 *tsval, u32 *tsecr) in cake_tcph_get_tstamp() argument 1141 *tsecr = get_unaligned_be32(ptr + 4); in cake_tcph_get_tstamp() 1151 u32 tstamp, tsecr; in cake_tcph_may_drop() local 1195 tsecr = get_unaligned_be32(ptr + 4); in cake_tcph_may_drop() 1197 after(tsecr, tsecr_new)) in cake_tcph_may_drop() 1230 u32 tstamp = 0, tsecr = 0; in cake_ack_filter() local 1244 cake_tcph_get_tstamp(tcph, &tstamp, &tsecr); in cake_ack_filter() 1311 if (!cake_tcph_may_drop(tcph_check, tstamp, tsecr) || in cake_ack_filter()
|
| /linux/net/ipv4/ |
| H A D | tcp_ipv4.c | 911 u32 win, u32 tsval, u32 tsecr, int oif, in tcp_v4_send_ack() argument 930 if (tsecr) { in tcp_v4_send_ack() 935 rep.opt[2] = htonl(tsecr); in tcp_v4_send_ack() 950 int offset = (tsecr) ? 3 : 0; in tcp_v4_send_ack() 966 int offset = (tsecr) ? 3 : 0; in tcp_v4_send_ack()
|
| /linux/tools/testing/selftests/drivers/net/ |
| H A D | gro.c | |