diff options
author | Florin Coras <fcoras@cisco.com> | 2019-04-04 12:55:30 -0700 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2019-04-04 12:55:30 -0700 |
commit | 8509aa29e389bb57a7224d1ace0c55ba64db427b (patch) | |
tree | fffa721ccb4e431fd461e4e64901716fcf54580c /src | |
parent | a154017cf5469d27b30c43d9f2b6144d1f286dd9 (diff) |
ldp: ignore TCP_CORK socket option
Change-Id: Iffc3d2fbb478d5cd228959f4f2653d0508887489
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vcl/ldp.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |