Function: url-http-idle-sentinel
url-http-idle-sentinel is a byte-compiled function defined in
url-http.el.gz.
Signature
(url-http-idle-sentinel PROC WHY)
Documentation
Remove (now defunct) process PROC from the list of open connections.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-http.el.gz
;; )
;; These unfortunately cannot be macros... please ignore them!
(defun url-http-idle-sentinel (proc why)
"Remove (now defunct) process PROC from the list of open connections."
(url-http-debug "url-http-idle-sentinel for process %S: %s" proc (string-trim why))
(maphash (lambda (key val)
(if (memq proc val)
(puthash key (delq proc val) url-http-open-connections)))
url-http-open-connections))