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)