diff options
Diffstat (limited to 'src/core/transport/transport_impl.h')
-rw-r--r-- | src/core/transport/transport_impl.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/transport/transport_impl.h b/src/core/transport/transport_impl.h index 9adb16b941..c7eebc9bb2 100644 --- a/src/core/transport/transport_impl.h +++ b/src/core/transport/transport_impl.h @@ -45,26 +45,26 @@ typedef struct grpc_transport_vtable { int (*init_stream)(grpc_transport *self, grpc_stream *stream, const void *server_data, grpc_transport_stream_op *initial_op, - grpc_call_list *call_list); + grpc_closure_list *closure_list); /* implementation of grpc_transport_perform_stream_op */ void (*perform_stream_op)(grpc_transport *self, grpc_stream *stream, grpc_transport_stream_op *op, - grpc_call_list *call_list); + grpc_closure_list *closure_list); /* implementation of grpc_transport_perform_op */ void (*perform_op)(grpc_transport *self, grpc_transport_op *op, - grpc_call_list *call_list); + grpc_closure_list *closure_list); /* implementation of grpc_transport_destroy_stream */ void (*destroy_stream)(grpc_transport *self, grpc_stream *stream, - grpc_call_list *call_list); + grpc_closure_list *closure_list); /* implementation of grpc_transport_destroy */ - void (*destroy)(grpc_transport *self, grpc_call_list *call_list); + void (*destroy)(grpc_transport *self, grpc_closure_list *closure_list); /* implementation of grpc_transport_get_peer */ - char *(*get_peer)(grpc_transport *self, grpc_call_list *call_list); + char *(*get_peer)(grpc_transport *self, grpc_closure_list *closure_list); } grpc_transport_vtable; /* an instance of a grpc transport */ |