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)
  (let ((key (if main-thread
                 (list host port (current-thread))
               (cons host port))))
    (url-http-debug "Marking connection as busy: %s:%d %S" host port proc)
    (set-process-query-on-exit-flag proc t)
    (puthash key
             (delq proc (gethash key url-http-open-connections))
	     url-http-open-connections)
    proc))