maskit commented on code in PR #10627: URL: https://github.com/apache/trafficserver/pull/10627#discussion_r1420965685
########## include/ts/apidefs.h.in: ########## @@ -655,6 +655,15 @@ char const TS_VERSION_STRING[] = "@TS_VERSION_STRING@"; TS_TXN_INFO_LAST_ENTRY, }; + enum TSHttpSsnInfoKey { + TS_SSN_INFO_NONE = -1, + TS_SSN_INFO_TRANSACTION_COUNT, + TS_SSN_INFO_RECEIVED_FRAME_COUNT, + }; + +#define TS_SSN_INFO_RECEIVED_FRAME_COUNT_H2_UNKNOWN 999 +#define TS_SSN_INFO_RECEIVED_FRAME_COUNT_H3_UNKNOWN 0x21 Review Comment: Because 0x0e is just an unassigned number (it could be used later for something). 0x21 is reserved for exercising and will never be used. https://datatracker.ietf.org/doc/html/rfc9114#name-reserved-frame-types -- 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: github-unsubscr...@trafficserver.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org