From: Florin Coras Date: Thu, 4 Apr 2019 19:55:30 +0000 (-0700) Subject: ldp: ignore TCP_CORK socket option X-Git-Tag: v19.04-rc1~46 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=8509aa29e389bb57a7224d1ace0c55ba64db427b;p=vpp.git ldp: ignore TCP_CORK socket option Change-Id: Iffc3d2fbb478d5cd228959f4f2653d0508887489 Signed-off-by: Florin Coras --- diff --git a/src/vcl/ldp.c b/src/vcl/ldp.c index 9e00d7e2668..6dc44ece42f 100644 --- a/src/vcl/ldp.c +++ b/src/vcl/ldp.c @@ -1837,6 +1837,7 @@ setsockopt (int fd, int level, int optname, (void *) optval, &optlen); break; case TCP_CONGESTION: + case TCP_CORK: /* Ignore */ rv = 0; break;