| 5889 | } |
| 5890 | |
| 5891 | TSVConn |
| 5892 | TSTransformOutputVConnGet(TSVConn connp) |
| 5893 | { |
| 5894 | sdk_assert(sdk_sanity_check_iocore_structure(connp) == TS_SUCCESS); |
| 5895 | |
| 5896 | VConnection *vc = reinterpret_cast<VConnection *>(connp); |
| 5897 | TSVConn data; |
| 5898 | |
| 5899 | vc->get_data(TS_API_DATA_OUTPUT_VC, &data); // This case can't fail. |
| 5900 | return data; |
| 5901 | } |
| 5902 | |
| 5903 | void |
| 5904 | TSHttpTxnServerIntercept(TSCont contp, TSHttpTxn txnp) |