| 5828 | } |
| 5829 | |
| 5830 | VConnection * |
| 5831 | HttpSM::do_post_transform_open() |
| 5832 | { |
| 5833 | ink_assert(post_transform_info.vc == nullptr); |
| 5834 | |
| 5835 | if (is_action_tag_set("http_post_nullt")) { |
| 5836 | txn_hook_add(TS_HTTP_REQUEST_TRANSFORM_HOOK, transformProcessor.null_transform(mutex.get())); |
| 5837 | } |
| 5838 | |
| 5839 | post_transform_info.vc = transformProcessor.open(this, api_hooks.get(TS_HTTP_REQUEST_TRANSFORM_HOOK)); |
| 5840 | if (post_transform_info.vc) { |
| 5841 | // Record the transform VC in our table |
| 5842 | post_transform_info.entry = vc_table.new_entry(); |
| 5843 | post_transform_info.entry->vc = post_transform_info.vc; |
| 5844 | post_transform_info.entry->vc_type = HTTP_TRANSFORM_VC; |
| 5845 | } |
| 5846 | |
| 5847 | return post_transform_info.vc; |
| 5848 | } |
| 5849 | |
| 5850 | VConnection * |
| 5851 | HttpSM::do_transform_open() |
no test coverage detected