Searched defs:maxsockbuf (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c1341 static int maxsockbuf = -1; local
1343 static long maxsockbuf = -1; local
1458 * ensure that value is <= kern.ipc.maxsockbuf as otherwise we get
1464 if (maxsockbuf == -1) {
1468 rlen = sizeof(maxsockbuf);
1469 if (sysctl(mib, 3, &maxsockbuf, &rlen, NULL, 0) == -1)
1470 maxsockbuf = 1024;
1474 problem. It should be removed when kern.ipc.maxsockbuf
1476 maxsockbuf = (maxsockbuf/
[all...]

Completed in 1099 milliseconds