From 0287f7834e8ebba68bf0b5ca55fa0d237c874567 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Wed, 2 Jun 2021 13:16:19 -0300 Subject: [PATCH] Minor doc fix --- oxenmq/message.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oxenmq/message.h b/oxenmq/message.h index 3eb1afb..73b96d0 100644 --- a/oxenmq/message.h +++ b/oxenmq/message.h @@ -16,7 +16,7 @@ public: ConnectionID conn; ///< The connection info for routing a reply; also contains the pubkey/sn status. std::string reply_tag; ///< If the invoked command is a request command this is the required reply tag that will be prepended by `send_reply()`. Access access; ///< The access level of the invoker. This can be higher than the access level of the command, for example for an admin invoking a basic command. - std::string remote; ///< Some sort of remote address from which the request came. Often "IP" for TCP connections and "localhost:UID:GID:PID" for UDP connections. + std::string remote; ///< Some sort of remote address from which the request came. Often "IP" for TCP connections and "localhost:UID:GID:PID" for unix socket connections. /// Constructor Message(OxenMQ& lmq, ConnectionID cid, Access access, std::string remote)