| 5916 | } |
| 5917 | |
| 5918 | void |
| 5919 | TSHttpTxnIntercept(TSCont contp, TSHttpTxn txnp) |
| 5920 | { |
| 5921 | HttpSM *http_sm = reinterpret_cast<HttpSM *>(txnp); |
| 5922 | |
| 5923 | sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS); |
| 5924 | sdk_assert(sdk_sanity_check_continuation(contp) == TS_SUCCESS); |
| 5925 | |
| 5926 | TSIOBufferSizeIndex buffer_index = TSPluginVCIOBufferIndexGet(txnp); |
| 5927 | TSIOBufferWaterMark buffer_water_mark = TSPluginVCIOBufferWaterMarkGet(txnp); |
| 5928 | |
| 5929 | http_sm->plugin_tunnel_type = HTTP_PLUGIN_AS_INTERCEPT; |
| 5930 | http_sm->plugin_tunnel = PluginVCCore::alloc(reinterpret_cast<INKContInternal *>(contp), buffer_index, buffer_water_mark); |
| 5931 | } |
| 5932 | |
| 5933 | TSIOBufferSizeIndex |
| 5934 | TSPluginVCIOBufferIndexGet(TSHttpTxn txnp) |