Function: url-http-mark-connection-as-busy
url-http-mark-connection-as-busy is a byte-compiled function defined
in url-http.el.gz.
Signature
(url-http-mark-connection-as-busy HOST PORT PROC)
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-http.el.gz
(defun url-http-mark-connection-as-busy (host port proc)
(url-http-debug "Marking connection as busy: %s:%d %S" host port proc)
(set-process-query-on-exit-flag proc t)
(puthash (cons host port)
(delq proc (gethash (cons host port) url-http-open-connections))
url-http-open-connections)
proc)