bneradt commented on code in PR #10696:
URL: https://github.com/apache/trafficserver/pull/10696#discussion_r1378955457
##########
include/iocore/net/SessionSharingAPIEnums.h:
##########
Review Comment:
Yep, it uses the TS_SERVER_OUTBOUND_MATCH stuff to keep parity there:
```cpp
enum MatchType {
MATCH_IP = TS_SERVER_OUTBOUND_MATCH_IP, ///< Match by IP address.
MATCH_PORT = TS_SERVER_OUTBOUND_MATCH_PORT, ///< Match by IP address and
port.
MATCH_HOST = TS_SERVER_OUTBOUND_MATCH_HOST, ///< Match by hostname
(FQDN).
MATCH_BOTH = TS_SERVER_OUTBOUND_MATCH_BOTH, ///< Hostname, IP Address
and port.
};
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]