Increase TCP listen connection backlog, for parity with prospect TCP driver

This commit is contained in:
Tony Garnock-Jones 2015-03-18 19:04:03 -04:00
parent e2614c7b94
commit c90c16ab4b
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
(loop)])))))
(define (listener port-number)
(define s (tcp-listen port-number 4 #t))
(define s (tcp-listen port-number 128 #t))
(let loop ()
(define-values (in out) (tcp-accept s))
(connection in out)