aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/connection.lisp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/connection.lisp b/src/connection.lisp
index d69f157..0ebe348 100644
--- a/src/connection.lisp
+++ b/src/connection.lisp
@@ -64,6 +64,12 @@ For an example of usage, see the :SUDO connection type."))
:reader connection-parent
:documentation
"The value of *CONNECTION* at the time this connection was established.")
+ (connattrs
+ :initform nil
+ :documentation "This connection's connection attributes.")
+
+ ;; TODO some or all of these slots should probably become connattrs. for
+ ;; example, :CHROOT.FORK can have the remote-uid propagate.
(cached-data
:initform nil
:documentation
@@ -83,10 +89,7 @@ For an example of usage, see the :SUDO connection type."))
(remote-user
:initform nil
:documentation
- "The name of the remote user.")
- (connattrs
- :initform nil
- :documentation "This connection's connection attributes.")))
+ "The name of the remote user.")))
(defclass lisp-connection (connection) ())