Net VConnections */
| 5958 | |
| 5959 | /* Net VConnections */ |
| 5960 | void |
| 5961 | TSVConnInactivityTimeoutSet(TSVConn connp, TSHRTime timeout) |
| 5962 | { |
| 5963 | sdk_assert(sdk_sanity_check_iocore_structure(connp) == TS_SUCCESS); |
| 5964 | |
| 5965 | NetVConnection *vc = reinterpret_cast<NetVConnection *>(connp); |
| 5966 | vc->set_inactivity_timeout(timeout); |
| 5967 | } |
| 5968 | |
| 5969 | void |
| 5970 | TSVConnInactivityTimeoutCancel(TSVConn connp) |
nothing calls this directly
no test coverage detected