diff options
author | Yuchen Zeng <y-zeng@users.noreply.github.com> | 2017-02-27 15:25:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 15:25:38 -0800 |
commit | 2aa5a1d90864dd8ebad60e218a7059bbebdc5085 (patch) | |
tree | b7693265416eb00be7bcdddc6982b997db79464d /src/core/ext/client_channel/resolver_registry.h | |
parent | 38c8bb4a7fc8b0e9d36836d03d9af47f35447011 (diff) | |
parent | c40d1d84f9d492561cb71ea3f5304ef780d7e574 (diff) |
Merge pull request #9839 from y-zeng/1_1_x_address_arg_fix
Preserve ipv6 scope id in grpc_channel_args
Diffstat (limited to 'src/core/ext/client_channel/resolver_registry.h')
-rw-r--r-- | src/core/ext/client_channel/resolver_registry.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/ext/client_channel/resolver_registry.h b/src/core/ext/client_channel/resolver_registry.h index a4606463eb..cb8c59333c 100644 --- a/src/core/ext/client_channel/resolver_registry.h +++ b/src/core/ext/client_channel/resolver_registry.h @@ -73,10 +73,11 @@ grpc_resolver_factory *grpc_resolver_factory_lookup(const char *name); /** Given a target, return a (freshly allocated with gpr_malloc) string representing the default authority to pass from a client. */ -char *grpc_get_default_authority(const char *target); +char *grpc_get_default_authority(grpc_exec_ctx *exec_ctx, const char *target); /** Returns a newly allocated string containing \a target, adding the default prefix if needed. */ -char *grpc_resolver_factory_add_default_prefix_if_needed(const char *target); +char *grpc_resolver_factory_add_default_prefix_if_needed( + grpc_exec_ctx *exec_ctx, const char *target); #endif /* GRPC_CORE_EXT_CLIENT_CHANNEL_RESOLVER_REGISTRY_H */ |