Minor doc fix

This commit is contained in:
Jason Rhinelander 2021-06-02 13:16:19 -03:00
parent cdc6a9709c
commit 0287f7834e
1 changed files with 1 additions and 1 deletions

View File

@ -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)