diff options
author | Craig Tiller <ctiller@google.com> | 2015-07-06 11:36:20 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-07-06 11:36:20 -0700 |
commit | 043a0a83c52710ff3b23fe1a0425871456bb1ef2 (patch) | |
tree | bef3f99d68afb9590bca391c969c86265f2b96fd /src | |
parent | 377881204fe380d927086a4a86737c1a97f27ea0 (diff) |
Add a short description of available resolution schemes
Diffstat (limited to 'src')
-rw-r--r-- | src/core/client_config/README.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/client_config/README.md b/src/core/client_config/README.md index 7cb19cd130..d7aed27223 100644 --- a/src/core/client_config/README.md +++ b/src/core/client_config/README.md @@ -42,3 +42,19 @@ Their behavior is specified by a set of grpc channel filters defined at their construction. To customize this behavior, resolvers build grpc_subchannel_factory objects, which use the decorator pattern to customize construction arguments for concrete grpc_subchannel instances. + + +Naming for GRPC +=============== + +Names in GRPC are represented by a URI. + +The following schemes are currently supported: + +dns:///host:port - dns schemes are currently supported so long as authority is + empty (authority based dns resolution is expected in a future + release) + +unix:path - the unix scheme is used to create and connect to unix domain + sockets - the authority must be empty, and the path represents + the absolute or relative path to the desired socket |