FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
tcp_inlines.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef SRC_VNET_TCP_TCP_INLINES_H_
17 #define SRC_VNET_TCP_TCP_INLINES_H_
18 
19 #include <vnet/tcp/tcp.h>
20 
23 {
24  ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE);
25  return (tcp_header_t *) (b->data + b->current_data
26  + vnet_buffer (b)->tcp.hdr_offset);
27 }
28 
31 {
33  if (PREDICT_FALSE (pool_is_free_index (wrk->connections, conn_index)))
34  return 0;
35  return pool_elt_at_index (wrk->connections, conn_index);
36 }
37 
40 {
42  if (thread_index >= vec_len (tcp_main.wrk_ctx))
43  return 0;
45  if (pool_is_free_index (wrk->connections, conn_index))
46  return 0;
47  return pool_elt_at_index (wrk->connections, conn_index);
48 }
49 
50 always_inline void
52 {
53  tc->state = state;
54  TCP_EVT (TCP_EVT_STATE_CHANGE, tc);
55 }
56 
59 {
60  tcp_connection_t *tc = 0;
61  if (!pool_is_free_index (tcp_main.listener_pool, tli))
62  tc = pool_elt_at_index (tcp_main.listener_pool, tli);
63  return tc;
64 }
65 
68 {
69  return tcp_connection_get (conn_index, 0);
70 }
71 
72 /**
73  * Our estimate of the number of bytes that have left the network
74  */
77 {
78  if (tcp_opts_sack_permitted (&tc->rcv_opts))
79  return tc->sack_sb.sacked_bytes + tc->sack_sb.lost_bytes;
80  else
81  return clib_min (tc->rcv_dupacks * tc->snd_mss,
82  tc->snd_nxt - tc->snd_una);
83 }
84 
85 /**
86  * Our estimate of the number of bytes in flight (pipe size)
87  */
90 {
91  int flight_size;
92 
93  flight_size = (int) (tc->snd_nxt - tc->snd_una) - tcp_bytes_out (tc)
94  + tc->snd_rxt_bytes - tc->rxt_delivered;
95 
96  ASSERT (flight_size >= 0);
97 
98  return flight_size;
99 }
100 
101 /**
102  * Initial cwnd as per RFC5681
103  */
106 {
107  if (tcp_cfg.initial_cwnd_multiplier > 0)
108  return tcp_cfg.initial_cwnd_multiplier * tc->snd_mss;
109 
110  if (tc->snd_mss > 2190)
111  return 2 * tc->snd_mss;
112  else if (tc->snd_mss > 1095)
113  return 3 * tc->snd_mss;
114  else
115  return 4 * tc->snd_mss;
116 }
117 
118 /*
119  * Accumulate acked bytes for cwnd increase
120  *
121  * Once threshold bytes are accumulated, snd_mss bytes are added
122  * to the cwnd.
123  */
124 always_inline void
126 {
127  tc->cwnd_acc_bytes += bytes;
128  if (tc->cwnd_acc_bytes >= thresh)
129  {
130  u32 inc = tc->cwnd_acc_bytes / thresh;
131  tc->cwnd_acc_bytes -= inc * thresh;
132  tc->cwnd += inc * tc->snd_mss;
133  tc->cwnd = clib_min (tc->cwnd, tc->tx_fifo_size);
134  }
135 }
136 
139 {
140  /* Whatever we have in flight + the packet we're about to send */
141  return tcp_flight_size (tc) + tc->snd_mss;
142 }
143 
146 {
147  return clib_min (tc->cwnd, tc->snd_wnd);
148 }
149 
152 {
153  u32 available_wnd = tcp_available_snd_wnd (tc);
154  int flight_size = (int) (tc->snd_nxt - tc->snd_una);
155 
156  if (available_wnd <= flight_size)
157  return 0;
158 
159  return available_wnd - flight_size;
160 }
161 
162 /**
163  * Estimate of how many bytes we can still push into the network
164  */
167 {
168  u32 available_wnd = tcp_available_snd_wnd (tc);
169  u32 flight_size = tcp_flight_size (tc);
170 
171  if (available_wnd <= flight_size)
172  return 0;
173 
174  return available_wnd - flight_size;
175 }
176 
179 {
180  if ((tc->flags & TCP_CONN_FINSNT) && (tc->snd_nxt - tc->snd_una == 1))
181  return 1;
182  return 0;
183 }
184 
185 /**
186  * Time used to generate timestamps, not the timestamp
187  */
190 {
191  return tcp_main.wrk_ctx[thread_index].time_tstamp;
192 }
193 
194 /**
195  * Generate timestamp for tcp connection
196  */
199 {
200  return (tcp_main.wrk_ctx[tc->c_thread_index].time_tstamp -
201  tc->timestamp_delta);
202 }
203 
206 {
207  return tcp_main.wrk_ctx[thread_index].time_us;
208 }
209 
210 always_inline void
212 {
213  /* TCP internal cache of time reference. Could use @ref transport_time_now
214  * but because @ref tcp_time_now_us is used per packet, caching might
215  * slightly improve efficiency. */
216  wrk->time_us = now;
217  wrk->time_tstamp = (u64) (now * TCP_TSTP_HZ);
218 }
219 
220 always_inline void
222 {
223  f64 now = vlib_time_now (wrk->vm);
224 
225  /* Both pacer and tcp us time need to be updated */
228 }
229 
232  u8 is_ip4, u8 is_nolookup)
233 {
234  u32 fib_index = vnet_buffer (b)->ip.fib_index;
235  int n_advance_bytes, n_data_bytes;
237  tcp_header_t *tcp;
238  u8 result = 0;
239 
240  if (is_ip4)
241  {
243  int ip_hdr_bytes = ip4_header_bytes (ip4);
244  if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
245  {
246  *error = TCP_ERROR_LENGTH;
247  return 0;
248  }
249  tcp = ip4_next_header (ip4);
250  vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
251  n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
252  n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
253 
254  /* Length check. Checksum computed by ipx_local no need to compute again */
255  if (PREDICT_FALSE (n_data_bytes < 0))
256  {
257  *error = TCP_ERROR_LENGTH;
258  return 0;
259  }
260 
261  if (!is_nolookup)
262  tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
263  &ip4->src_address, tcp->dst_port,
264  tcp->src_port,
265  TRANSPORT_PROTO_TCP, thread_index,
266  &result);
267  }
268  else
269  {
271  if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
272  {
273  *error = TCP_ERROR_LENGTH;
274  return 0;
275  }
276  tcp = ip6_next_header (ip6);
277  vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
278  n_advance_bytes = tcp_header_bytes (tcp);
279  n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
280  - n_advance_bytes;
281  n_advance_bytes += sizeof (ip6[0]);
282 
283  if (PREDICT_FALSE (n_data_bytes < 0))
284  {
285  *error = TCP_ERROR_LENGTH;
286  return 0;
287  }
288 
289  if (!is_nolookup)
290  {
291  if (PREDICT_FALSE
292  (ip6_address_is_link_local_unicast (&ip6->dst_address)))
293  {
294  ip6_main_t *im = &ip6_main;
295  fib_index = vec_elt (im->fib_index_by_sw_if_index,
297  }
298 
299  tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
300  &ip6->src_address,
301  tcp->dst_port, tcp->src_port,
302  TRANSPORT_PROTO_TCP,
303  thread_index, &result);
304  }
305  }
306 
307  if (is_nolookup)
308  tc =
310  tcp.connection_index,
311  thread_index);
312 
313  vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
314  vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
315  vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
316  vnet_buffer (b)->tcp.data_len = n_data_bytes;
317  vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
318  + n_data_bytes;
319 
320  *error = result ? TCP_ERROR_NONE + result : *error;
321 
323 }
324 
325 /**
326  * Initialize connection by gleaning network and rcv params from buffer
327  *
328  * @param tc connection to initialize
329  * @param b buffer whose current data is pointing at ip
330  * @param is_ip4 flag set to 1 if using ip4
331  */
332 always_inline void
334 {
335  tcp_header_t *th = tcp_buffer_hdr (b);
336 
337  tc->c_lcl_port = th->dst_port;
338  tc->c_rmt_port = th->src_port;
339  tc->c_is_ip4 = is_ip4;
340 
341  if (is_ip4)
342  {
344  tc->c_lcl_ip4.as_u32 = ip4->dst_address.as_u32;
345  tc->c_rmt_ip4.as_u32 = ip4->src_address.as_u32;
346  }
347  else
348  {
350  clib_memcpy_fast (&tc->c_lcl_ip6, &ip6->dst_address,
351  sizeof (ip6_address_t));
352  clib_memcpy_fast (&tc->c_rmt_ip6, &ip6->src_address,
353  sizeof (ip6_address_t));
354  }
355 
356  tc->irs = vnet_buffer (b)->tcp.seq_number;
357  tc->rcv_nxt = vnet_buffer (b)->tcp.seq_number + 1;
358  tc->rcv_las = tc->rcv_nxt;
359  tc->sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX];
360  tc->snd_wl1 = vnet_buffer (b)->tcp.seq_number;
361  tc->snd_wl2 = vnet_buffer (b)->tcp.ack_number;
362 
363  /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
364  * segments are used to initialize PAWS. */
365  if (tcp_opts_tstamp (&tc->rcv_opts))
366  {
367  tc->tsval_recent = tc->rcv_opts.tsval;
368  tc->tsval_recent_age = tcp_time_tstamp (tc->c_thread_index);
369  }
370 
371  if (tcp_opts_wscale (&tc->rcv_opts))
372  tc->snd_wscale = tc->rcv_opts.wscale;
373 
374  tc->snd_wnd = clib_net_to_host_u16 (th->window) << tc->snd_wscale;
375 }
376 
377 always_inline void
379 {
380  tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
381  tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
382 }
383 
386 {
387  return (transport_connection_is_descheduled (&tc->connection) ? 1 : 0);
388 }
389 
390 /**
391  * Push TCP header to buffer
392  *
393  * @param vm - vlib_main
394  * @param b - buffer to write the header to
395  * @param sp_net - source port net order
396  * @param dp_net - destination port net order
397  * @param seq - sequence number net order
398  * @param ack - ack number net order
399  * @param tcp_hdr_opts_len - header and options length in bytes
400  * @param flags - header flags
401  * @param wnd - window size
402  *
403  * @return - pointer to start of TCP header
404  */
405 always_inline void *
407  u32 ack, u8 tcp_hdr_opts_len, u8 flags,
408  u16 wnd)
409 {
410  tcp_header_t *th;
411 
412  th = vlib_buffer_push_uninit (b, tcp_hdr_opts_len);
413 
414  th->src_port = sp;
415  th->dst_port = dp;
416  th->seq_number = seq;
417  th->ack_number = ack;
418  th->data_offset_and_reserved = (tcp_hdr_opts_len >> 2) << 4;
419  th->flags = flags;
420  th->window = wnd;
421  th->checksum = 0;
422  th->urgent_pointer = 0;
423  vnet_buffer (b)->l4_hdr_offset = (u8 *) th - b->data;
424  b->flags |= VNET_BUFFER_F_L4_HDR_OFFSET_VALID;
425  return th;
426 }
427 
428 /**
429  * Push TCP header to buffer
430  *
431  * @param b - buffer to write the header to
432  * @param sp_net - source port net order
433  * @param dp_net - destination port net order
434  * @param seq - sequence number host order
435  * @param ack - ack number host order
436  * @param tcp_hdr_opts_len - header and options length in bytes
437  * @param flags - header flags
438  * @param wnd - window size
439  *
440  * @return - pointer to start of TCP header
441  */
442 always_inline void *
443 vlib_buffer_push_tcp (vlib_buffer_t * b, u16 sp_net, u16 dp_net, u32 seq,
444  u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
445 {
446  return vlib_buffer_push_tcp_net_order (b, sp_net, dp_net,
447  clib_host_to_net_u32 (seq),
448  clib_host_to_net_u32 (ack),
449  tcp_hdr_opts_len, flags,
450  clib_host_to_net_u16 (wnd));
451 }
452 
453 #endif /* SRC_VNET_TCP_TCP_INLINES_H_ */
454 
455 /*
456  * fd.io coding-style-patch-verification: ON
457  *
458  * Local Variables:
459  * eval: (c-set-style "gnu")
460  * End:
461  */
ip6_address_is_link_local_unicast
static uword ip6_address_is_link_local_unicast(const ip6_address_t *a)
Definition: ip6_packet.h:253
im
vnet_interface_main_t * im
Definition: interface_output.c:415
tcp_header_bytes
static int tcp_header_bytes(tcp_header_t *t)
Definition: tcp_packet.h:93
thread_index
u32 thread_index
Definition: nat44_ei_hairpinning.c:495
tcp_half_open_connection_get
static tcp_connection_t * tcp_half_open_connection_get(u32 conn_index)
Definition: tcp_inlines.h:67
tcp_opts_tstamp
#define tcp_opts_tstamp(_to)
Definition: tcp_packet.h:156
session_lookup_connection_wt4
transport_connection_t * session_lookup_connection_wt4(u32 fib_index, ip4_address_t *lcl, ip4_address_t *rmt, u16 lcl_port, u16 rmt_port, u8 proto, u32 thread_index, u8 *result)
Lookup connection with ip4 and transport layer information.
Definition: session_lookup.c:905
ip4
vl_api_ip4_address_t ip4
Definition: one.api:376
clib_max
#define clib_max(x, y)
Definition: clib.h:335
TCP_RTO_MAX
#define TCP_RTO_MAX
Definition: tcp_types.h:85
tcp_set_time_now
static void tcp_set_time_now(tcp_worker_ctx_t *wrk, f64 now)
Definition: tcp_inlines.h:211
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:549
tcp_initial_cwnd
static u32 tcp_initial_cwnd(const tcp_connection_t *tc)
Initial cwnd as per RFC5681.
Definition: tcp_inlines.h:105
tcp_header_t
struct _tcp_header tcp_header_t
tcp_available_output_snd_space
static u32 tcp_available_output_snd_space(const tcp_connection_t *tc)
Definition: tcp_inlines.h:151
tcp_connection_t
struct _tcp_connection tcp_connection_t
tcp_listener_get
static tcp_connection_t * tcp_listener_get(u32 tli)
Definition: tcp_inlines.h:58
wrk
session_worker_t * wrk
Definition: application.c:490
u16
unsigned short u16
Definition: types.h:57
tcp_get_worker
static tcp_worker_ctx_t * tcp_get_worker(u32 thread_index)
Definition: tcp.h:283
tcp_bytes_out
static u32 tcp_bytes_out(const tcp_connection_t *tc)
Our estimate of the number of bytes that have left the network.
Definition: tcp_inlines.h:76
tcp_time_tstamp
static u32 tcp_time_tstamp(u32 thread_index)
Time used to generate timestamps, not the timestamp.
Definition: tcp_inlines.h:189
VLIB_RX
@ VLIB_RX
Definition: defs.h:46
state
vl_api_dhcp_client_state_t state
Definition: dhcp.api:201
tcp_is_lost_fin
static u8 tcp_is_lost_fin(tcp_connection_t *tc)
Definition: tcp_inlines.h:178
transport_connection_t
struct _transport_connection transport_connection_t
ip6_next_header
static void * ip6_next_header(ip6_header_t *i)
Definition: ip6_packet.h:407
clib_memcpy_fast
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
tcp_loss_wnd
static u32 tcp_loss_wnd(const tcp_connection_t *tc)
Definition: tcp_inlines.h:138
ip4_header_t
Definition: ip4_packet.h:87
error
Definition: cJSON.c:88
tcp_input_lookup_buffer
static tcp_connection_t * tcp_input_lookup_buffer(vlib_buffer_t *b, u8 thread_index, u32 *error, u8 is_ip4, u8 is_nolookup)
Definition: tcp_inlines.h:231
pool_is_free_index
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:302
vec_elt
#define vec_elt(v, i)
Get vector value at index i.
Definition: vec_bootstrap.h:210
tcp_state_t
enum _tcp_state tcp_state_t
tcp_update_rto
static void tcp_update_rto(tcp_connection_t *tc)
Definition: tcp_inlines.h:378
vlib_buffer_t::current_data
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:119
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
TCP_TSTP_HZ
#define TCP_TSTP_HZ
Timestamp freq.
Definition: tcp_types.h:28
tcp_main
tcp_main_t tcp_main
Definition: tcp.c:28
tcp_opts_wscale
#define tcp_opts_wscale(_to)
Definition: tcp_packet.h:157
vnet_buffer
#define vnet_buffer(b)
Definition: buffer.h:441
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
tcp_connection_get_if_valid
static tcp_connection_t * tcp_connection_get_if_valid(u32 conn_index, u32 thread_index)
Definition: tcp_inlines.h:39
vlib_main_t::thread_index
u32 thread_index
Definition: main.h:215
tcp_connection_set_state
static void tcp_connection_set_state(tcp_connection_t *tc, tcp_state_t state)
Definition: tcp_inlines.h:51
tcp_available_snd_wnd
static u32 tcp_available_snd_wnd(const tcp_connection_t *tc)
Definition: tcp_inlines.h:145
f64
double f64
Definition: types.h:142
vlib_buffer_push_tcp_net_order
static void * vlib_buffer_push_tcp_net_order(vlib_buffer_t *b, u16 sp, u16 dp, u32 seq, u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
Push TCP header to buffer.
Definition: tcp_inlines.h:406
tcp_opts_sack_permitted
#define tcp_opts_sack_permitted(_to)
Definition: tcp_packet.h:159
TCP_EVT
#define TCP_EVT(_evt, _args...)
Definition: tcp_debug.h:145
clib_min
#define clib_min(x, y)
Definition: clib.h:342
tcp_tstamp
static u32 tcp_tstamp(tcp_connection_t *tc)
Generate timestamp for tcp connection.
Definition: tcp_inlines.h:198
transport_update_pacer_time
void transport_update_pacer_time(u32 thread_index, clib_time_type_t now)
Request pacer time update.
Definition: transport.c:784
tcp_init_w_buffer
static void tcp_init_w_buffer(tcp_connection_t *tc, vlib_buffer_t *b, u8 is_ip4)
Initialize connection by gleaning network and rcv params from buffer.
Definition: tcp_inlines.h:333
vlib_buffer_t::current_length
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
tcp_time_now_us
static f64 tcp_time_now_us(u32 thread_index)
Definition: tcp_inlines.h:205
ip6_main
ip6_main_t ip6_main
Definition: ip6_forward.c:2785
tcp_buffer_hdr
static tcp_header_t * tcp_buffer_hdr(vlib_buffer_t *b)
Definition: tcp_inlines.h:22
vlib_buffer_push_uninit
static void * vlib_buffer_push_uninit(vlib_buffer_t *b, u8 size)
Prepend uninitialized data to buffer.
Definition: buffer.h:363
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
u64
unsigned long u64
Definition: types.h:89
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
session_lookup_connection_wt6
transport_connection_t * session_lookup_connection_wt6(u32 fib_index, ip6_address_t *lcl, ip6_address_t *rmt, u16 lcl_port, u16 rmt_port, u8 proto, u32 thread_index, u8 *result)
Lookup connection with ip6 and transport layer information.
Definition: session_lookup.c:1129
VLIB_BUFFER_PRE_DATA_SIZE
#define VLIB_BUFFER_PRE_DATA_SIZE
Definition: buffer.h:51
u32
unsigned int u32
Definition: types.h:88
tcp.h
ip6
vl_api_ip6_address_t ip6
Definition: one.api:424
tcp_connection_get
static tcp_connection_t * tcp_connection_get(u32 conn_index, u32 thread_index)
Definition: tcp_inlines.h:30
session_worker_::vm
vlib_main_t * vm
Convenience pointer to this worker's vlib_main.
Definition: session.h:104
tcp_cwnd_accumulate
static void tcp_cwnd_accumulate(tcp_connection_t *tc, u32 thresh, u32 bytes)
Definition: tcp_inlines.h:125
ip6_header_t
Definition: ip6_packet.h:294
ip6_main_t
Definition: ip6.h:110
tcp_update_time_now
static void tcp_update_time_now(tcp_worker_ctx_t *wrk)
Definition: tcp_inlines.h:221
transport_connection_is_descheduled
static u8 transport_connection_is_descheduled(transport_connection_t *tc)
Definition: transport.h:209
now
f64 now
Definition: nat44_ei_out2in.c:710
tcp_get_connection_from_transport
static tcp_connection_t * tcp_get_connection_from_transport(transport_connection_t *tconn)
Definition: tcp_types.h:442
TCP_RTO_MIN
#define TCP_RTO_MIN
Definition: tcp_types.h:86
tcp_flight_size
static u32 tcp_flight_size(const tcp_connection_t *tc)
Our estimate of the number of bytes in flight (pipe size)
Definition: tcp_inlines.h:89
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
u8
unsigned char u8
Definition: types.h:56
vlib_buffer_get_current
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:257
vlib_buffer_t::data
u8 data[]
Packet data.
Definition: buffer.h:204
tcp_cfg
#define tcp_cfg
Definition: tcp.h:272
ip4_header_bytes
static int ip4_header_bytes(const ip4_header_t *i)
Definition: ip4_packet.h:190
vlib_time_now
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:327
tcp_worker_ctx_
Definition: tcp.h:75
vlib_buffer_push_tcp
static void * vlib_buffer_push_tcp(vlib_buffer_t *b, u16 sp_net, u16 dp_net, u32 seq, u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
Push TCP header to buffer.
Definition: tcp_inlines.h:443
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
tcp_is_descheduled
static u8 tcp_is_descheduled(tcp_connection_t *tc)
Definition: tcp_inlines.h:385
ip4_next_header
static void * ip4_next_header(ip4_header_t *i)
Definition: ip4_packet.h:196
vlib_buffer_t::flags
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,...
Definition: buffer.h:133
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
tcp_available_cc_snd_space
static u32 tcp_available_cc_snd_space(const tcp_connection_t *tc)
Estimate of how many bytes we can still push into the network.
Definition: tcp_inlines.h:166
flags
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105