aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c
Commit message (Collapse)AuthorAge
* Update documentation and samples.Gravatar Jorge Canizales2016-06-08
|
* Pre-install hook in the Tests podspec for local dev of gRPC-CoreGravatar Jorge Canizales2016-06-08
|
* Podspec changes for generated code.Gravatar Jorge Canizales2016-06-08
|
* Tests Podfile: remove redundancyGravatar Jorge Canizales2016-06-08
|
* ProtoRPC: Framework-like import of proto runtimeGravatar Jorge Canizales2016-06-08
|
* Separate Core, ProtoRuntime, and RxLibrary subspecsGravatar Jorge Canizales2016-06-08
|
* Remove #include <inttypes.h> from BoringSSLGravatar Jorge Canizales2016-06-08
| | | | Apple hasn’t created a module map for that system header, which means it can’t be used from frameworks.
* Make BoringSSL work with frameworksGravatar Jorge Canizales2016-06-08
| | | | | | | | | | | Cocoapods 1.0 keeps the directory structure of the public headers when creating a dynamic framework, so if we keep the header_mappings_dir as it was, includes would need to be of the form #include <openssl/openssl/ssl.h> This means our header_mappings_dir has to be ‘include/openssl’ instead of ‘include’. Which in turn means that, for static libraries, we have to tell Cocoapods to prepend an ‘openssl’ directory to the headers. We do that with the ‘header_dir’ attribute of the podspec.
* Merge pull request #6671 from jcanizales/move-to-cocoapods-1Gravatar makdharma2016-05-25
|\ | | | | Move tests to Cocoapods 1.0.0
| * Disable deterministic UUIDs in the test PodfileGravatar Jorge Canizales2016-05-20
| |
| * Update tests XCode project to Cocoapods 1.0.0Gravatar Jorge Canizales2016-05-20
| |
* | Add state transitions to GRPCCallGravatar Jorge Canizales2016-04-30
| |
* | Test that GRPCCall transitions states properlyGravatar Jorge Canizales2016-04-30
| |
* | Objective-C: Add ChannelCredentials to gRPC Call.Gravatar Paul Querna2016-04-29
| | | | | | | | GRPCHost now has a property channelCreds which is used when creating a GRPCChannel.
* | Update copyrightsGravatar Craig Tiller2016-03-31
| |
* | Merge pull request #5736 from pquerna/pq/is_wan_is_ios_onlyGravatar Jan Tattermusch2016-03-29
|\ \ | | | | | | Objective C: kSCNetworkReachabilityFlagsIsWWAN is only available on iOS
* \ \ Merge pull request #5855 from grpc/revert-5724-revert-5607-revert-5544-masterGravatar Jan Tattermusch2016-03-24
|\ \ \ | | | | | | | | Revert for good "Pass a non-infinite deadline to grpc_completion_queue_next() to prevent queues from blocking indefinitely in poll()"
* | | | Fixing copyrights.Gravatar Nicolas "Pixel" Noble2016-03-21
| | | |
* | | | For GRPCOperation's, ensure finish _handler can only be called once, and ↵Gravatar Nicolas "Pixel" Noble2016-03-21
| | | | | | | | | | | | | | | | | | | | | | | | release it when called, so weak ptrs needn't be used with it, and the call won't be released until the finish handler is called. When the connectivityMonitor determines the connection has been lost, pull the host disconnect call. Creates an unreliable connection when connectivity is restored. Calling finishWithError: is sufficient.
| * | | Revert "Redo "Pass a non-infinite deadline to grpc_completion_queue_next() ↵Gravatar Jorge Canizales2016-03-20
|/ / / | | | | | | | | | to prevent queues from blocking indefinitely in poll()""
* | | Merge pull request #5749 from jcanizales/only-one-completion-queueGravatar Jan Tattermusch2016-03-15
|\ \ \ | | | | | | | | Use a singleton completion queue
* \ \ \ Merge pull request #5722 from jcanizales/fix-writeableGravatar Jan Tattermusch2016-03-14
|\ \ \ \ | | | | | | | | | | Make GRXWriteable with single handler robust against streaming Writers
| * | | | Make copyright not expire one year too soon.Gravatar Jorge Canizales2016-03-14
| | | | |
| | * | | Use a singleton completion queueGravatar Jorge Canizales2016-03-14
| |/ / / |/| | |
* | | | Merge pull request #5727 from nicolasnoble/upmergeGravatar Jan Tattermusch2016-03-14
|\ \ \ \ | | | | | | | | | | Upmerge from 0.13.1
* \ \ \ \ Merge pull request #5724 from grpc/revert-5607-revert-5544-masterGravatar Jan Tattermusch2016-03-14
|\ \ \ \ \ | | | | | | | | | | | | Redo "Pass a non-infinite deadline to grpc_completion_queue_next() to prevent queues from blocking indefinitely in poll()"
| | | | * | kSCNetworkReachabilityFlagsIsWWAN is only available on iOS, not all Mac targets.Gravatar Paul Querna2016-03-13
| |_|_|/ / |/| | | |
| | | * | Use a named constant for error domain and codeGravatar Jorge Canizales2016-03-11
| | | | |
| | * | | Merge branch 'release-0_13'Gravatar Nicolas "Pixel" Noble2016-03-12
| |/| | | |/| | | | | | | | | | | | | | | | | | | | | | | | Conflicts: composer.json src/php/composer.json
| | * | | Disabling iOS user-agent test.Gravatar Nicolas "Pixel" Noble2016-03-11
| | | | |
| * | | | Revert "Revert "Pass a non-infinite deadline to grpc_completion_queue_next() ↵Gravatar Jorge Canizales2016-03-11
| |/ / / | | | | | | | | | | | | to prevent queues from blocking indefinitely in poll()""
| | * | Make Writeable with single handler robust against stream WritersGravatar Jorge Canizales2016-03-11
| | | |
| | * | Test robustness of WriteableSingleHandler against non-single WritersGravatar Jorge Canizales2016-03-11
| |/ /
* | | Clean up ownership of the connection loss handlerGravatar Jorge Canizales2016-03-11
| | |
* | | Not call external methods from within a critical sectionGravatar Jorge Canizales2016-03-11
| | |
* | | Add monitoring of connectivityGravatar Jorge Canizales2016-03-11
|/ / | | | | | | | | | | | | Move C-layer call creation into GRPCChannel, so that it always acts on a non-destroyed channel. Listen for connectivity in the GRPCCall, and destroy the channel.
* | Fix sanityGravatar Craig Tiller2016-03-04
| |
* | Revert "Pass a non-infinite deadline to grpc_completion_queue_next() to ↵Gravatar Jan Tattermusch2016-03-04
| | | | | | | | prevent queues from blocking indefinitely in poll()"
* | Add comments and feature flag.Gravatar Greg Haines2016-03-04
| |
| * Update Podfile for CocoaPods 1.0 changes requiring more fields and the ↵Gravatar Paul Querna2016-03-03
| | | | | | | | removal of link_with in podspec.
* | Feedback from @jcanizales and @vjpaiGravatar Greg Haines2016-03-02
| |
* | Pass a non-infinite deadline to grpc_completion_queue_next() to prevent ↵Gravatar Greg Haines2016-03-02
|/ | | | queues from blocking indefinitely in poll().
* Another nit fix..Gravatar Makarand Dharmapurikar2016-02-26
|
* fixed indentation and removed unnecessary empty lineGravatar Makarand Dharmapurikar2016-02-26
|
* Added a test to verify user agent prefix can be set correctly.Gravatar Makarand Dharmapurikar2016-02-26
|
* Fixing format and copyright.Gravatar Nicolas "Pixel" Noble2016-02-25
|
* Order change of includes.Gravatar Makarand Dharmapurikar2016-02-24
|
* Reverted a change, removed empty test.Gravatar Makarand Dharmapurikar2016-02-24
|
* Fixed nits.Gravatar Makarand Dharmapurikar2016-02-24
|
* Addressed feedback from @jcanizalesGravatar Makarand Dharmapurikar2016-02-23
|