maskit commented on code in PR #12790:
URL: https://github.com/apache/trafficserver/pull/12790#discussion_r2723282253
##########
include/ts/apidefs.h.in:
##########
@@ -1081,6 +1081,19 @@ using TSAIOCallback = struct tsapi_aiocallback *;
using TSAcceptor = struct tsapi_net_accept *;
using TSRemapPluginInfo = struct tsapi_remap_plugin_info *;
+struct tsapi_ssl_client_hello {
+ uint16_t version;
+ const uint8_t *cipher_suites;
+ size_t cipher_suites_len;
+ const uint8_t *extensions;
+ size_t extensions_len;
+ int *extension_ids;
+ size_t extension_ids_len;
+ void *ssl_ptr;
+};
Review Comment:
Public getters would be nice even if we don't do lazy land. Those would
enable removing ifdef from the plugin code.
--
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]