aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCHost.m
Commit message (Collapse)AuthorAge
* Merge pull request #2862 from jcanizales/small-analyse-fixGravatar Michael Lumish2015-08-31
|\ | | | | Prevent using the hosts cache with a nil address
| * Prevent storing in the hosts cache with a nil keyGravatar Jorge Canizales2015-08-08
| |
* | Have ObjC use the new future-proofed C interfaceGravatar Jorge Canizales2015-08-08
|/
* Fixup for 971d06ad06caadb369e318112bba0e039188cfc2Gravatar Jorge Canizales2015-08-07
|
* Fix build breakageGravatar Jorge Canizales2015-08-06
|
* Clarify intention of the code that adds a default portGravatar Jorge Canizales2015-08-06
|
* Require very explicit registration of non-SSL hosts.Gravatar Jorge Canizales2015-08-06
|
* Merge master into support-test-certificates to solve conflicts.Gravatar Jorge Canizales2015-08-06
|
* Return nil instead of assert when the test certs can’t be readGravatar Jorge Canizales2015-08-05
|
* Make GRPCHost cache thread-safe.Gravatar Jorge Canizales2015-08-05
|
* Document intention of hostURL.port conditional check.Gravatar Jorge Canizales2015-08-05
|
* Forward-declare GRPCCompletionQueue and grpc_callGravatar Jorge Canizales2015-08-05
|
* Clarify comments in GRPCHost.mGravatar Jorge Canizales2015-08-01
|
* 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).