aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/channel/http_client_filter.c
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-07-23 09:16:37 -0700
committerGravatar Yang Gao <yangg@google.com>2015-07-23 09:16:37 -0700
commitb70440bb1dfe90f27b31d169f82a549f2aa17084 (patch)
tree1b9adad952e03d7d5a3e5752b9c352e476a968c6 /src/core/channel/http_client_filter.c
parentdd0f4fa0097299229641c0bc9234a3fa75b523da (diff)
parentac392e2385ee1a548e0de3c150dc090eea775381 (diff)
Merge pull request #2542 from ctiller/tell-me-who-you-might-be
Expose call peer uri from C core
Diffstat (limited to 'src/core/channel/http_client_filter.c')
-rw-r--r--src/core/channel/http_client_filter.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/channel/http_client_filter.c b/src/core/channel/http_client_filter.c
index 6e93103a6a..6ae8488070 100644
--- a/src/core/channel/http_client_filter.c
+++ b/src/core/channel/http_client_filter.c
@@ -280,4 +280,5 @@ static void destroy_channel_elem(grpc_channel_element *elem) {
const grpc_channel_filter grpc_http_client_filter = {
hc_start_transport_op, grpc_channel_next_op, sizeof(call_data),
init_call_elem, destroy_call_elem, sizeof(channel_data),
- init_channel_elem, destroy_channel_elem, "http-client"};
+ init_channel_elem, destroy_channel_elem, grpc_call_next_get_peer,
+ "http-client"};