Return the InterceptIO control block that owns the given VC.
| 147 | |
| 148 | // Return the InterceptIO control block that owns the given VC. |
| 149 | static InterceptIO * |
| 150 | InterceptGetThisSide(InterceptState *istate, TSVConn vc) |
| 151 | { |
| 152 | return (istate->client.vc == vc) ? &istate->client : &istate->server; |
| 153 | } |
| 154 | |
| 155 | // Return the InterceptIO control block that doesn't own the given VC. |
| 156 | static InterceptIO * |
no outgoing calls
no test coverage detected