Skip to content
Snippets Groups Projects
Unverified Commit 29074664 authored by Yang Gao's avatar Yang Gao Committed by GitHub
Browse files

Merge pull request #21352 from yang-g/client_handoff

Support client side handshaker handoff fd
parents f5666958 ae2b02a5
No related branches found
No related tags found
No related merge requests found
...@@ -139,20 +139,22 @@ void Chttp2Connector::OnHandshakeDone(void* arg, grpc_error* error) { ...@@ -139,20 +139,22 @@ void Chttp2Connector::OnHandshakeDone(void* arg, grpc_error* error) {
error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("connector shutdown"); error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("connector shutdown");
// We were shut down after handshaking completed successfully, so // We were shut down after handshaking completed successfully, so
// destroy the endpoint here. // destroy the endpoint here.
// TODO(ctiller): It is currently necessary to shutdown endpoints if (args->endpoint != nullptr) {
// before destroying them, even if we know that there are no // TODO(ctiller): It is currently necessary to shutdown endpoints
// pending read/write callbacks. This should be fixed, at which // before destroying them, even if we know that there are no
// point this can be removed. // pending read/write callbacks. This should be fixed, at which
grpc_endpoint_shutdown(args->endpoint, GRPC_ERROR_REF(error)); // point this can be removed.
grpc_endpoint_destroy(args->endpoint); grpc_endpoint_shutdown(args->endpoint, GRPC_ERROR_REF(error));
grpc_channel_args_destroy(args->args); grpc_endpoint_destroy(args->endpoint);
grpc_slice_buffer_destroy_internal(args->read_buffer); grpc_channel_args_destroy(args->args);
gpr_free(args->read_buffer); grpc_slice_buffer_destroy_internal(args->read_buffer);
gpr_free(args->read_buffer);
}
} else { } else {
error = GRPC_ERROR_REF(error); error = GRPC_ERROR_REF(error);
} }
self->result_->Reset(); self->result_->Reset();
} else { } else if (args->endpoint != nullptr) {
grpc_endpoint_delete_from_pollset_set(args->endpoint, grpc_endpoint_delete_from_pollset_set(args->endpoint,
self->args_.interested_parties); self->args_.interested_parties);
self->result_->transport = self->result_->transport =
...@@ -187,6 +189,11 @@ void Chttp2Connector::OnHandshakeDone(void* arg, grpc_error* error) { ...@@ -187,6 +189,11 @@ void Chttp2Connector::OnHandshakeDone(void* arg, grpc_error* error) {
grpc_chttp2_transport_start_reading(self->result_->transport, grpc_chttp2_transport_start_reading(self->result_->transport,
args->read_buffer, nullptr); args->read_buffer, nullptr);
self->result_->channel_args = args->args; self->result_->channel_args = args->args;
} else {
// If the handshaking succeeded but there is no endpoint, then the
// handshaker may have handed off the connection to some external
// code. Just verify that exit_early flag is set.
GPR_DEBUG_ASSERT(args->exit_early);
} }
grpc_closure* notify = self->notify_; grpc_closure* notify = self->notify_;
self->notify_ = nullptr; self->notify_ = nullptr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment