mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-31 14:50:50 -08:00
Added option TCP_NODELAY
This commit is contained in:
parent
ae4766c079
commit
dbe7ed3f36
2 changed files with 5 additions and 0 deletions
|
|
@ -42,6 +42,7 @@
|
|||
"#include <netdb.h>"
|
||||
"#include <string.h>"
|
||||
"#include <netinet/in.h>"
|
||||
"#include <netinet/tcp.h>"
|
||||
"#include <errno.h>"
|
||||
"#include <fcntl.h>"
|
||||
"#include <stdio.h>"
|
||||
|
|
@ -1437,6 +1438,8 @@ GET-NAME-SERVICE-ERRNO")
|
|||
#-(or :sun4sol2 :linux :wsock :cygwin)
|
||||
(define-sockopt sockopt-reuse-port "SO_REUSEPORT" bool)
|
||||
|
||||
(define-sockopt socket-tcp-nodelay "TCP_NODELAY" bool)
|
||||
|
||||
;; Add sockopts here as you need them...
|
||||
|
||||
;; Finished loading
|
||||
|
|
|
|||
|
|
@ -144,6 +144,8 @@ ECL 0.9k:
|
|||
|
||||
- Support for large files in systems that implement fseeko().
|
||||
|
||||
- Added option TCP_NODELAY to the sockets package.
|
||||
|
||||
* CLOS:
|
||||
|
||||
- When caching generic function calls, ECL now uses a thread-local hash table
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue