format
This commit is contained in:
parent
d3708c5e66
commit
e68f1425a9
|
@ -955,14 +955,15 @@ private int getSocketError()
|
||||||
version (Windows) return WSAGetLastError();
|
version (Windows) return WSAGetLastError();
|
||||||
else return errno;
|
else return errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
private int getBacklogSize()
|
private int getBacklogSize()
|
||||||
@trusted @nogc nothrow {
|
@trusted @nogc nothrow {
|
||||||
int backlog = 128;
|
int backlog = 128;
|
||||||
version(linux)
|
version (linux)
|
||||||
{
|
{
|
||||||
import core.stdc.stdio : fclose, fopen, fscanf;
|
import core.stdc.stdio : fclose, fopen, fscanf;
|
||||||
auto somaxconn = fopen("/proc/sys/net/core/somaxconn", "re");
|
auto somaxconn = fopen("/proc/sys/net/core/somaxconn", "re");
|
||||||
if(somaxconn)
|
if (somaxconn)
|
||||||
{
|
{
|
||||||
int tmp;
|
int tmp;
|
||||||
if (fscanf(somaxconn, "%d", &tmp) == 1)
|
if (fscanf(somaxconn, "%d", &tmp) == 1)
|
||||||
|
|
Loading…
Reference in a new issue