mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Add support for TCP_NODELAY on network streams
* src/process.c (socket_options): add entry for TCP_NODELAY. * lisp/emacs-lisp/bytecomp.el: add :nodelay to valid keywords for make-network-process compiler-macro. * doc/lispref/processes.texi: document :nodelay keyword argument to set-network-process-option and make-network-process. (Bug#74793)
This commit is contained in:
parent
989cdb2c35
commit
c265febd97
3 changed files with 14 additions and 2 deletions
|
|
@ -6049,8 +6049,8 @@ and corresponding effects."
|
|||
:buffer :host :service :type :family :local :remote :coding
|
||||
:nowait :noquery :stop :filter :filter-multibyte :sentinel
|
||||
:log :plist :tls-parameters :server :broadcast :dontroute
|
||||
:keepalive :linger :oobinline :priority :reuseaddr :bindtodevice
|
||||
:use-external-socket)
|
||||
:keepalive :linger :oobinline :priority :reuseaddr :nodelay
|
||||
:bindtodevice :use-external-socket)
|
||||
'(:name :service))))
|
||||
|
||||
(provide 'byte-compile)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue