| 5752 | } |
| 5753 | |
| 5754 | TSVIO |
| 5755 | TSVConnReadVIOGet(TSVConn connp) |
| 5756 | { |
| 5757 | sdk_assert(sdk_sanity_check_iocore_structure(connp) == TS_SUCCESS); |
| 5758 | |
| 5759 | VConnection *vc = reinterpret_cast<VConnection *>(connp); |
| 5760 | TSVIO data; |
| 5761 | |
| 5762 | if (vc->get_data(TS_API_DATA_READ_VIO, &data)) { |
| 5763 | return data; |
| 5764 | } |
| 5765 | |
| 5766 | return nullptr; |
| 5767 | } |
| 5768 | |
| 5769 | TSVIO |
| 5770 | TSVConnWriteVIOGet(TSVConn connp) |
nothing calls this directly
no test coverage detected