Variable: server-use-tcp

server-use-tcp is a customizable variable defined in server.el.gz.

Value

nil

Documentation

If non-nil, use TCP sockets instead of local sockets.

This variable was added, or its default value changed, in Emacs 22.1.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/server.el.gz
(defcustom server-use-tcp nil
  "If non-nil, use TCP sockets instead of local sockets."
  :set (lambda (sym val)
         (unless (featurep 'make-network-process '(:family local))
           (setq val t)
           (unless load-in-progress
             (message "Local sockets unsupported, using TCP sockets")))
         (set-default sym val))
  :type 'boolean
  :version "22.1")