Skip to content
Snippets Groups Projects
Commit d861b13a authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #6823 from makdharma/bugfixes

added comment about host parameter format (issue 4147)
parents 33028369 150e5025
No related branches found
No related tags found
No related merge requests found
...@@ -220,6 +220,8 @@ extern id const kGRPCTrailersKey; ...@@ -220,6 +220,8 @@ extern id const kGRPCTrailersKey;
* messages to the response side of the call indefinitely (depending on the semantics of the * messages to the response side of the call indefinitely (depending on the semantics of the
* specific remote method called). * specific remote method called).
* To finish a call right away, invoke cancel. * 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 - (instancetype)initWithHost:(NSString *)host
path:(NSString *)path path:(NSString *)path
......
...@@ -39,6 +39,10 @@ ...@@ -39,6 +39,10 @@
__attribute__((deprecated("Please use GRPCProtoCall."))) __attribute__((deprecated("Please use GRPCProtoCall.")))
@interface ProtoRPC : GRPCCall @interface ProtoRPC : GRPCCall
/**
* 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 - (instancetype)initWithHost:(NSString *)host
method:(GRPCProtoMethod *)method method:(GRPCProtoMethod *)method
requestsWriter:(GRXWriter *)requestsWriter requestsWriter:(GRXWriter *)requestsWriter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment