diff options
author | Craig Tiller <ctiller@google.com> | 2017-02-14 09:48:41 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-02-14 09:48:41 -0800 |
commit | 4a84bdda7f42e303c570e2ee73cc14c57df6c81b (patch) | |
tree | 415551b747bcc8f7866a1ee49c1a497963824e0e /src/core/lib/transport | |
parent | 3fc3408cd33eb2e221863e0881ec82eb8e21414f (diff) |
s/transport_private/handler_private -- use is no longer restricted to transports
Diffstat (limited to 'src/core/lib/transport')
-rw-r--r-- | src/core/lib/transport/transport.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/transport/transport.h b/src/core/lib/transport/transport.h index 9a0abe1ca4..e56bf2780a 100644 --- a/src/core/lib/transport/transport.h +++ b/src/core/lib/transport/transport.h @@ -167,9 +167,9 @@ typedef struct grpc_transport_stream_op { /*************************************************************************** * remaining fields are initialized and used at the discretion of the - * transport implementation */ + * current handler of the op */ - grpc_transport_private_op_data transport_private; + grpc_transport_private_op_data handler_private; } grpc_transport_stream_op; /** Transport op: a set of operations to perform on a transport as a whole */ |