Variable: ange-ftp-passive-host-alist

ange-ftp-passive-host-alist is a customizable variable defined in ange-ftp.el.gz.

Value

nil

Documentation

Alist of FTP servers that need "passive" mode.

Each element is of the form (HOSTNAME . SETTING). HOSTNAME is a regular expression to match the FTP server host name(s). SETTING is "on" to turn passive mode on, "off" to turn it off, or nil meaning don't change it.

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

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defcustom ange-ftp-passive-host-alist nil
  "Alist of FTP servers that need \"passive\" mode.
Each element is of the form (HOSTNAME . SETTING).
HOSTNAME is a regular expression to match the FTP server host name(s).
SETTING is \"on\" to turn passive mode on, \"off\" to turn it off,
or nil meaning don't change it."
  :group 'ange-ftp
  :type '(repeat (cons regexp (choice (const :tag "On" "on")
				      (const :tag "Off" "off")
				      (const :tag "Don't change" nil))))
  :version "22.1")