aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp/client
Commit message (Collapse)AuthorAge
...
* | Update C++ server with new core APIGravatar Craig Tiller2015-02-23
| | | | | | | | And reflects the C++ API in ServerBuilder.
* | Credentials prototypingGravatar Craig Tiller2015-02-23
|/ | | | | | - Remove CredentialsFactory as it's unnecessary - Effectively make Credentials a channel factory, allowing different credential types to create different channel types - this gives us a hook so that InsecureCredentials can at runtime instantiate a different kind of channel as required - giving us a way of generating an openssl free version of grpc++. - Server credentials not touched yet, but they'll need to be updated.
* Merge github.com:grpc/grpc into an-update-on-c++Gravatar Craig Tiller2015-02-18
|\
| * Merge pull request #588 from yang-g/c++apiGravatar Craig Tiller2015-02-18
| |\ | | | | | | Async client api change. Add a ClientAsyncResponseReader.
| | * Async client api change. Add a ClientAsyncResponseReader. Make the api ↵Gravatar Yang Gao2015-02-18
| | | | | | | | | | | | similar to streaming and symmetric to server side.
* | | Merge github.com:grpc/grpc into an-update-on-c++Gravatar Craig Tiller2015-02-18
|\| |
| * | Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
| | |
* | | Initial sketchGravatar Craig Tiller2015-02-18
| |/ |/|
| * Update copyright to 2015Gravatar Craig Tiller2015-02-18
|/
* Add metadata test with rpc. Adding/fixing things to make it workGravatar Yang Gao2015-02-18
|
* formattingGravatar Yang Gao2015-02-17
|
* should use c_strGravatar Yang Gao2015-02-17
|
* Merge branch 'c++api' of github.com:ctiller/grpc into c++apiGravatar Yang Gao2015-02-17
|\
* | Add setter to override authority header on ClientContextGravatar Yang Gao2015-02-17
| |
| * Fix ASSERT conditionGravatar Craig Tiller2015-02-17
|/
* clang-formatGravatar Craig Tiller2015-02-17
|
* Add missing APIs and a first metadata test, and test passesGravatar Yang Gao2015-02-13
|
* change AddRecvMessage signatureGravatar Yang Gao2015-02-12
|
* implement async unary callGravatar Yang Gao2015-02-12
|
* fix sync unary call with metadata piecesGravatar Yang Gao2015-02-12
|
* make codegen generate async client callsGravatar Yang Gao2015-02-12
|
* Some streaming progressGravatar Craig Tiller2015-02-11
|
* Make sure we get a close before stopping the serverGravatar Craig Tiller2015-02-11
|
* Add trailing metadata to client context and use it.Gravatar Yang Gao2015-02-11
|
* Make it compileGravatar Yang Gao2015-02-11
|
* Initial metadata fixGravatar Craig Tiller2015-02-11
|
* Move call.h -> impl/call.hGravatar Craig Tiller2015-02-10
|
* Stub out unary call wrapperGravatar Craig Tiller2015-02-09
|
* Refine completion queueGravatar Craig Tiller2015-02-09
|
* Remove more unnecessary filesGravatar Craig Tiller2015-02-09
|
* Further progressGravatar Craig Tiller2015-02-09
|
* Starting to scratch out the APIGravatar Craig Tiller2015-02-09
|
* Merge branch 'async-api-prep' of github.com:ctiller/grpc into async-apiGravatar Craig Tiller2015-02-02
|\
| * Prepare for the new batch call API.Gravatar Craig Tiller2015-02-02
| | | | | | | | | | Rename all core API functions that are on their way to deprecation with an _old tag across all wrappings.
* | First compiling version of the new C api.Gravatar Craig Tiller2015-01-27
|/
* Resolved merge conflicts with masterGravatar murgatroid992015-01-21
|\
| * clang-formatGravatar Craig Tiller2015-01-20
| |
| * Merge branch 'new_invoke_api' of github.com:google/grpc into update-apiGravatar Craig Tiller2015-01-20
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/cpp/client/channel.cc src/cpp/stream/stream_context.cc src/cpp/stream/stream_context.h src/php/ext/grpc/call.c test/core/end2end/tests/max_concurrent_streams.c
* | | Changing the SSL (Server) Credentials API.Gravatar Julien Boeuf2015-01-20
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | - Changed the unsigned char * + size to NULL terminated strings which makes sense for the PEM format. I may change TSI later (but the impact will hopefully be much more limited). - Added a way to pass multiple key/cert pairs to servers which is needed when hosting more than one domain. - Removed the C++ SSL credentials tests as we are going to have an option to not specify the roots which will then be derived from the environment (well-known platform dependent locations and/or environment variable). - Fixed the php build which is the only one added in the run_test.py. This change will certainly break node, python and ruby.
* | Use clang-format-3.5Gravatar Craig Tiller2015-01-18
| |
| * clang-formatGravatar Craig Tiller2015-01-14
| |
| * Starting to fix C++Gravatar Craig Tiller2015-01-13
|/
* clang-format codebaseGravatar Craig Tiller2015-01-13
|
* Fixing opensource build.Gravatar nnoble2015-01-12
| | | | | | | Change on 2015/01/12 by nnoble <nnoble@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83810001
* Moving the google-internal security code in their own files.Gravatar jboeuf2015-01-12
| | | | | | | | | | Checked that the opensource version still builds. Just addressing core for now. We will do c++ later. Change on 2015/01/12 by jboeuf <jboeuf@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83804014
* Add impl subdirectory under public and move headers that need to be installedGravatar yangg2015-01-12
| | | | | | | | to it. Change on 2015/01/09 by yangg <yangg@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83640373
* Add ServiceAccount Credentials wrapping and handle credentials creationGravatar yangg2015-01-12
| | | | | | | | failure. Change on 2015/01/09 by yangg <yangg@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83634736
* Fix hostname for streaming.Gravatar yangg2015-01-08
| | | | | | | Change on 2015/01/07 by yangg <yangg@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83448769
* fix MOE compliling error.Gravatar chenw2014-12-29
| | | | | | | Change on 2014/12/22 by chenw <chenw@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82682265
* Use overriden host name when creating a call.Gravatar yangg2014-12-29
| | | | | | | Change on 2014/12/22 by yangg <yangg@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82672321