mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
net/mpd5: import latest fix for "set iface mtu X override" from upstream
This commit is contained in:
parent
7009b8a1da
commit
c2a56941a0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=481203
@ -3,7 +3,7 @@
|
||||
|
||||
PORTNAME= mpd
|
||||
DISTVERSION= 5.8
|
||||
PORTREVISION= 7
|
||||
PORTREVISION= 8
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= SF/${PORTNAME}/Mpd5/Mpd-${PORTVERSION}
|
||||
PKGNAMESUFFIX= 5
|
||||
|
@ -105,3 +105,17 @@ Index: src/iface.c
|
||||
snprintf(tcpmsscfg.inHook, sizeof(tcpmsscfg.inHook), "in");
|
||||
snprintf(tcpmsscfg.outHook, sizeof(tcpmsscfg.outHook), "out");
|
||||
if (NgSendMsg(gLinksCsock, path, NGM_TCPMSS_COOKIE, NGM_TCPMSS_CONFIG,
|
||||
Index: src/bund.c
|
||||
===================================================================
|
||||
--- src/bund.c (revision 2253)
|
||||
+++ src/bund.c (revision 2254)
|
||||
@@ -328,7 +328,8 @@ BundJoin(Link l)
|
||||
|
||||
/* Configure this link */
|
||||
b->pppConfig.links[l->bundleIndex].enableLink = 1;
|
||||
- b->pppConfig.links[l->bundleIndex].mru = lcp->peer_mru;
|
||||
+ b->pppConfig.links[l->bundleIndex].mru = b->iface.mtu_override ?
|
||||
+ b->iface.mtu_override : lcp->peer_mru;
|
||||
b->pppConfig.links[l->bundleIndex].enableACFComp = lcp->peer_acfcomp;
|
||||
b->pppConfig.links[l->bundleIndex].enableProtoComp = lcp->peer_protocomp;
|
||||
b->pppConfig.links[l->bundleIndex].bandwidth =
|
||||
|
Loading…
Reference in New Issue
Block a user