diff options
author | Dou Chao <chao.dou@intel.com> | 2022-11-29 19:41:34 +0800 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-12-14 16:57:14 +0000 |
commit | 243a0433ff05a37113d6890bbeb163bbea033687 (patch) | |
tree | 1ac3ec8b63ed22649a30f1c6666ac5460a1ff9b3 /src/plugins | |
parent | 4b9935cd54e5ca31c192cb9113e3056016f0b728 (diff) |
vcl: enable gso for 'sendmsg' in LDP mode.
Some upon apps(e.g. Nginx-quic) package it's several protocol buffers into a struct msg
which is a combination of gso_buffer and gso_size.
but if HostStack regardless the gso_size to the buffer and split the buffer with default mss,
that cause peer client failed on parsing the package.
Type: improvement
Signed-off-by: Dou Chao <chao.dou@intel.com>
Change-Id: I805eb642be826038ba96d1b85dad8ec0c0f6c459
Signed-off-by: Dou Chao <chao.dou@intel.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/quic/quic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/quic/quic.c b/src/plugins/quic/quic.c index e4ea38cfb48..898846d8ea4 100644 --- a/src/plugins/quic/quic.c +++ b/src/plugins/quic/quic.c @@ -676,6 +676,7 @@ quic_send_datagram (session_t *udp_session, struct iovec *packet, hdr.is_ip4 = tc->is_ip4; clib_memcpy (&hdr.lcl_ip, &tc->lcl_ip, sizeof (ip46_address_t)); hdr.lcl_port = tc->lcl_port; + hdr.gso_size = 0; /* Read dest address from quicly-provided sockaddr */ if (hdr.is_ip4) |