svn commit: r352615 - stable/12/lib/libc/yp
Konstantin Belousov
kib at FreeBSD.org
Mon Sep 23 07:22:22 UTC 2019
Author: kib
Date: Mon Sep 23 07:22:22 2019
New Revision: 352615
URL: https://svnweb.freebsd.org/changeset/base/352615
Log:
MFC r352384:
Increase the size of the send and receive buffers for YP client rpc
calls to max allowed UDP datagram size.
Sponsored by: Mellanox Technologies
Modified:
stable/12/lib/libc/yp/yplib.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/lib/libc/yp/yplib.c
==============================================================================
--- stable/12/lib/libc/yp/yplib.c Mon Sep 23 04:28:07 2019 (r352614)
+++ stable/12/lib/libc/yp/yplib.c Mon Sep 23 07:22:22 2019 (r352615)
@@ -526,7 +526,7 @@ gotit:
tv.tv_usec = 0;
ysd->dom_socket = RPC_ANYSOCK;
ysd->dom_client = clntudp_bufcreate(&ysd->dom_server_addr,
- YPPROG, YPVERS, tv, &ysd->dom_socket, 1280, 2304);
+ YPPROG, YPVERS, tv, &ysd->dom_socket, 65507, 65507);
if (ysd->dom_client == NULL) {
clnt_pcreateerror("clntudp_create");
ysd->dom_vers = -1;
More information about the svn-src-all
mailing list