diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-05-01 14:10:46 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-05-01 14:10:46 -0700 |
commit | 935cf42396d78cad859f25ed1e8cf7f440b06edc (patch) | |
tree | c9324f188ab4e56faa31be01a8b0e1cc4d9c91f7 /src/core/transport | |
parent | 6f0812cd5d77d33e43be635dca59e0edbb56988f (diff) |
Add per-call context pointer API
Diffstat (limited to 'src/core/transport')
-rw-r--r-- | src/core/transport/transport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/transport/transport.h b/src/core/transport/transport.h index cdea0b9a0b..7a389ea393 100644 --- a/src/core/transport/transport.h +++ b/src/core/transport/transport.h @@ -76,6 +76,9 @@ typedef struct grpc_transport_op { grpc_status_code cancel_with_status; grpc_mdstr *cancel_message; + + /* Indexes correspond to grpc_context_index enum values */ + void *const *context; } grpc_transport_op; /* Callbacks made from the transport to the upper layers of grpc. */ |