| 5880 | /* Transformations */ |
| 5881 | |
| 5882 | TSVConn |
| 5883 | TSTransformCreate(TSEventFunc event_funcp, TSHttpTxn txnp) |
| 5884 | { |
| 5885 | sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS); |
| 5886 | |
| 5887 | return TSVConnCreate(event_funcp, |
| 5888 | reinterpret_cast<TSMutex>(static_cast<Continuation *>(reinterpret_cast<HttpSM *>(txnp))->getMutex())); |
| 5889 | } |
| 5890 | |
| 5891 | TSVConn |
| 5892 | TSTransformOutputVConnGet(TSVConn connp) |