aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCSecureChannel.h
Commit message (Collapse)AuthorAge
* Document that grpc_channel_args don’t need to survive GRPCSecureChannel initGravatar Jorge Canizales2015-08-05
|
* Undo forward-declaring grpc_channel_args, which isn’t a struct!Gravatar Jorge Canizales2015-08-05
| | | | It’s a typedef of an anonymous struct.
* Fix breakage (struct before undefined structs)Gravatar Jorge Canizales2015-08-05
|
* Forward-declare structs in GRPCSecureChannel.hGravatar Jorge Canizales2015-08-05
| | | | And add warning about using custom certificates or name override if not testing.
* Let register SSL config per-host.Gravatar Jorge Canizales2015-08-01
| | | | | | | | | | | | | | Surfaced in GRPCCall+Tests.h Add GRPCHost to store channel config, and to create channels on demand with that config. GRPCChannels and configs are cached together. GRPCSecureChannel is now initialized with (nullable) path to a certificates file and (nullable) name override. The same mechanism will be used for creating insecure channels, removing the ability to do it by specifying the HTTP scheme in the address (which was deemed too subtle for its implications).
* Remove GRPCChannel-initWithHost to simplify implementationGravatar Jorge Canizales2015-08-01
|
* Makes GRPCChannel a cluster class of secure and unsecured.Gravatar Jorge Canizales2015-04-21