Function: tramp-parse-sknownhosts
tramp-parse-sknownhosts is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-parse-sknownhosts DIRNAME)
Documentation
Return a list of (user host) tuples allowed to access.
User is always nil.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-parse-sknownhosts (dirname)
"Return a list of (user host) tuples allowed to access.
User is always nil."
(tramp-parse-shostkeys-sknownhosts
dirname
(rx
bol (group (regexp tramp-host-regexp)) ".ssh-" (| "dss" "rsa") ".pub" eol)))