diff options
Diffstat (limited to 'logd/main.cpp')
| -rw-r--r-- | logd/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/logd/main.cpp b/logd/main.cpp index 1891206..6216b95 100644 --- a/logd/main.cpp +++ b/logd/main.cpp @@ -105,7 +105,8 @@ int main() { // and LogReader is notified to send updates to connected clients. LogListener *swl = new LogListener(logBuf, reader); - if (swl->startListener()) { + // Backlog and /proc/sys/net/unix/max_dgram_qlen set to large value + if (swl->startListener(300)) { exit(1); } |
