| 6010 | } |
| 6011 | |
| 6012 | sockaddr const * |
| 6013 | TSNetVConnClientAddrGet(TSVConn connp) |
| 6014 | { |
| 6015 | sdk_assert(sdk_sanity_check_iocore_structure(connp) == TS_SUCCESS); |
| 6016 | NetVConnection *vc = reinterpret_cast<NetVConnection *>(connp); |
| 6017 | return vc->get_effective_remote_addr(); |
| 6018 | } |
| 6019 | |
| 6020 | TSAction |
| 6021 | TSNetConnect(TSCont contp, sockaddr const *addr) |
nothing calls this directly
no test coverage detected