Variable: url-http-open-connections
url-http-open-connections is a variable defined in url-http.el.gz.
Value
#s(hash-table test equal)
Documentation
A hash table of all open network connections.
If Emacs is compiled with thread support, the key is a list (host port
thread). Otherwise, it is a cons cell (host . port).
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-http.el.gz
(defvar url-http-open-connections (make-hash-table :test 'equal
:size 17)
"A hash table of all open network connections.
If Emacs is compiled with thread support, the key is a list `(host port
thread)'. Otherwise, it is a cons cell `(host . port)'.")