Increase a socket receive buffer size. This helps 'ngctl list'

to deal with a big number of nodes.

Submitted by:		archie
Approved by:		archie
Reported and tested:	Konstantin Timashkov
MFC after:		1 month
This commit is contained in:
Maxim Konovalov 2004-11-25 09:27:56 +00:00
parent 964ebefd8d
commit b5974bdbab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=138076

View File

@ -114,7 +114,7 @@ main(int ac, char *av[])
char name[NG_NODESIZ];
int interactive = isatty(0) && isatty(1);
FILE *fp = NULL;
int ch, rtn = 0;
int ch, size, rtn = 0;
/* Set default node name */
snprintf(name, sizeof(name), "ngctl%d", getpid());
@ -146,7 +146,9 @@ main(int ac, char *av[])
/* Create a new socket node */
if (NgMkSockNode(name, &csock, &dsock) < 0)
err(EX_OSERR, "can't create node");
size = 128 * 1024;
if (setsockopt(csock, SOL_SOCKET, SO_RCVBUF, &size, sizeof(size)) == -1)
err(1, "setsockopt");
/* Do commands as requested */
if (ac == 0) {
if (fp != NULL) {