Skip to content
Snippets Groups Projects
Commit 9c880ee2 authored by Libor Peltan's avatar Libor Peltan Committed by Daniel Salzman
Browse files

XDP-TCP: limit incomming MSS to what XDP can handle

parent 511264a2
No related branches found
No related tags found
1 merge request!1300Basic implementation of TCP over XDP for Knot server
......@@ -436,6 +436,7 @@ int knot_xdp_recv(knot_xdp_socket_t *socket, knot_xdp_msg_t msgs[],
msg->payload.iov_base = payl_start;
msg->payload.iov_len = payl_end - payl_start;
msg->mss = MIN(msg->mss, FRAME_SIZE - (payl_start - (void *)uframe_p));
if (wire_size != NULL) {
(*wire_size) += desc->len;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment