Return the InterceptIO control block that doesn't own the given VC.
| 154 | |
| 155 | // Return the InterceptIO control block that doesn't own the given VC. |
| 156 | static InterceptIO * |
| 157 | InterceptGetOtherSide(InterceptState *istate, TSVConn vc) |
| 158 | { |
| 159 | return (istate->client.vc == vc) ? &istate->server : &istate->client; |
| 160 | } |
| 161 | |
| 162 | // Evaluates to a human-readable name for a TSVConn in the |
| 163 | // intercept proxy state. |
no outgoing calls
no test coverage detected