grs commented on a change in pull request #1129: URL: https://github.com/apache/qpid-dispatch/pull/1129#discussion_r615060537
########## File path: src/adaptors/tcp_adaptor.c ########## @@ -116,6 +120,26 @@ static inline uint64_t qdr_tcp_conn_linkid(const qdr_tcp_connection_t *conn) return conn->instream ? conn->incoming_id : conn->outgoing_id; } +static inline const char * qdr_link_direction_name(const qdr_link_t *link) +{ + assert(link); + return qdr_link_direction(link) == QD_OUTGOING ? "outgoing" : "incoming"; +} + +static inline const char * qdr_tcp_connection_role_name(const qdr_tcp_connection_t *tc) +{ + assert(tc); + return tc->ingress ? "client" : "server"; Review comment: > Clients never accept connections and servers never originate connections. But that is not what the line above implies, is it? If ingress=true it is a connection managed by a TcpListener, i,e, it was an accepted connection. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org