diff options
author | Makarand Dharmapurikar <makarandd@google.com> | 2016-06-07 13:24:35 -0700 |
---|---|---|
committer | Makarand Dharmapurikar <makarandd@google.com> | 2016-06-07 13:24:35 -0700 |
commit | 5cdc9b9181b990a29cffaf797e3396d25017cd1e (patch) | |
tree | 76a20bec27387941807b188052ea53ab807e7f5d /src/objective-c | |
parent | d30d4e279c4a63effaa6e912fc00bd4ad96054c7 (diff) |
added comment about host parameter format (issue 4147)
Diffstat (limited to 'src/objective-c')
-rw-r--r-- | src/objective-c/GRPCClient/GRPCCall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCall.h b/src/objective-c/GRPCClient/GRPCCall.h index 7a77ae60b6..b9e741dfa8 100644 --- a/src/objective-c/GRPCClient/GRPCCall.h +++ b/src/objective-c/GRPCClient/GRPCCall.h @@ -220,6 +220,8 @@ extern id const kGRPCTrailersKey; * messages to the response side of the call indefinitely (depending on the semantics of the * specific remote method called). * To finish a call right away, invoke cancel. + * host parameter should not contain the scheme (http:// or https://), only the name or IP addr + * and the port number, for example @"localhost:5050". */ - (instancetype)initWithHost:(NSString *)host path:(NSString *)path |