diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-10 10:26:42 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-10 10:26:42 -0800 |
commit | c55c102ed49233b09ac4a29a8f066c5d42e310ae (patch) | |
tree | 71218d697d5dc73ba73e62578422daeab8f07d23 /src/core/lib/transport | |
parent | 2e34bd7ca391c75c5e6e4d5a0fa31217d55417a4 (diff) |
Conversion progress
Diffstat (limited to 'src/core/lib/transport')
-rw-r--r-- | src/core/lib/transport/transport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/transport/transport.h b/src/core/lib/transport/transport.h index af3a90aa1e..bfcce703ef 100644 --- a/src/core/lib/transport/transport.h +++ b/src/core/lib/transport/transport.h @@ -110,7 +110,7 @@ void grpc_transport_move_stats(grpc_transport_stream_stats *from, typedef struct { void *extra_arg; grpc_closure closure; -} grpc_transport_private_op_data; +} grpc_handler_private_op_data; typedef struct grpc_transport_stream_op_payload grpc_transport_stream_op_payload; @@ -159,7 +159,7 @@ typedef struct grpc_transport_stream_op { * remaining fields are initialized and used at the discretion of the * current handler of the op */ - grpc_transport_private_op_data handler_private; + grpc_handler_private_op_data handler_private; } grpc_transport_stream_op; struct grpc_transport_stream_op_payload { @@ -248,7 +248,7 @@ typedef struct grpc_transport_op { * remaining fields are initialized and used at the discretion of the * transport implementation */ - grpc_transport_private_op_data transport_private; + grpc_handler_private_op_data handler_private; } grpc_transport_op; /* Returns the amount of memory required to store a grpc_stream for this |