diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-06-09 14:50:35 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-06-09 14:50:35 -0700 |
commit | f78b9a7e522ee320a5cf7f69d0ed21eae8417068 (patch) | |
tree | fd0ce38a06cb809474e24ef24856d7f30a222f5f /src/core/surface | |
parent | db8e17986d5b7ce786a6a686e1f8616bc5fb77cb (diff) |
Add comment
Diffstat (limited to 'src/core/surface')
-rw-r--r-- | src/core/surface/channel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/surface/channel.h b/src/core/surface/channel.h index dace4dfb41..6d1ed87900 100644 --- a/src/core/surface/channel.h +++ b/src/core/surface/channel.h @@ -40,8 +40,12 @@ grpc_channel *grpc_channel_create_from_filters( const grpc_channel_filter **filters, size_t count, const grpc_channel_args *args, grpc_mdctx *mdctx, int is_client); +/** Get a (borrowed) pointer to this channels underlying channel stack */ grpc_channel_stack *grpc_channel_get_channel_stack(grpc_channel *channel); + +/** Get a (borrowed) pointer to the channel wide metadata context */ grpc_mdctx *grpc_channel_get_metadata_context(grpc_channel *channel); + /** Get a grpc_mdelem of grpc-status: X where X is the numeric value of status_code. |