| 417 | } |
| 418 | |
| 419 | Status Connection::GetLocalAddress(Sockaddr* addr) const { |
| 420 | DCHECK(socket_); |
| 421 | DCHECK(addr); |
| 422 | return socket_->GetSocketAddress(addr); |
| 423 | } |
| 424 | |
| 425 | // Inject a cancellation when 'call' is in state 'FLAGS_rpc_inject_cancellation_state'. |
| 426 | void inline Connection::MaybeInjectCancellation(const shared_ptr<OutboundCall> &call) { |
no test coverage detected