Function: tramp-parse-hosts-group
tramp-parse-hosts-group is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-parse-hosts-group)
Documentation
Return a (user host) tuple allowed to access.
User is always nil.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-parse-hosts-group ()
"Return a (user host) tuple allowed to access.
User is always nil."
(tramp-parse-group
(rx bol (group (| (regexp tramp-ipv6-regexp) (regexp tramp-host-regexp))))
1 (rx blank)))