Hi, When looking at apidefs ( https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;a=blob;f=lib/ts/apidefs.h.in;h=329adf27f9d0fc3fc677c21d5be38e39456dab73;hb=HEAD#l291) the SSL hooks appear to be at the end of the hook list. While this isn't a huge problem, in some situations it's helpful to have the order the hooks will be called in the same order in that list. For example, we like to do things like curHook > HOOK_READ_RESPONSE_HEADERS, and currently that won't be possible w/ the SSL hooks in this order.
Does anyone have thoughts on moving these guys to before READ_REQUEST_HEADERS since these ssl hooks will always happen before that point? Does anyone have concerns around things breaking by making this change? Brian