Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Addressing outstanding typos and comments | 2015-07-14 | |
| | | | | Clang-format of changed files | ||
* | Remove reference to nullptr to avoid compiler seeing ambiguity in gcc-4.4 | 2015-07-14 | |
| | | | | | | | build. The issue is that gcc below 4.6 require us to explicitly define nullptr, and our explicit definition allows a potential confusion between nullptr->unique_ptr<string> and nullptr->char *->grpc::string->unique_ptr<string> | ||
* | Merge pull request #2289 from ctiller/footprints-on-the-sands-of-time | 2015-07-10 | |
|\ | | | | | Introduce multiple clocks to GPR | ||
| * | Merge github.com:grpc/grpc into footprints-on-the-sands-of-time | 2015-07-10 | |
| |\ | |||
* | | | Compile fix for Mac | 2015-07-10 | |
| |/ |/| | |||
* | | Merge remote-tracking branch 'upstream/master' into security_context2 | 2015-07-09 | |
|\ \ | |||
| | * | Merge github.com:grpc/grpc into footprints-on-the-sands-of-time | 2015-07-09 | |
| | |\ | | |/ | |/| | |||
* | | | resolve comments | 2015-07-07 | |
| | | | |||
| * | | Support registering services against specific hosts | 2015-07-07 | |
| | | | |||
* | | | add a test case in end2end_test | 2015-07-06 | |
|/ / | |||
| * | Fixup C++ | 2015-07-06 | |
|/ | |||
* | Bug fix. Do not push to incoming_queue after it is flushed. | 2015-06-25 | |
| | |||
* | Update the Status API | 2015-06-16 | |
| | |||
* | Various minor fixes | 2015-06-01 | |
| | |||
* | Replaced std::this_thread::sleep_for for gpr_sleep_until. | 2015-05-20 | |
| | | | | | std::this_thread::sleep_for isn't available in gcc <= 4.6 (4.7?) nor VS2010. | ||
* | resolve comments | 2015-05-17 | |
| | |||
* | Add fake credentials to the test and verify it actually works | 2015-05-15 | |
| | |||
* | resolve comments | 2015-05-15 | |
| | |||
* | support per call credentials in c++ | 2015-05-14 | |
| | |||
* | Split thread stress from end2end to improve parallelism | 2015-05-06 | |
| | |||
* | clang-format | 2015-05-04 | |
| | |||
* | merge with head | 2015-05-01 | |
|\ | |||
* | | Expose max message size at the server side | 2015-04-30 | |
| | | |||
| * | Add a thread stress end2end test | 2015-04-29 | |
|/ | |||
* | Merge pull request #1227 from nicolasnoble/the-purge-2 | 2015-04-24 | |
|\ | | | | | Refactoring std::chrono out. | ||
* \ | Merge pull request #1359 from a11r/cc2 | 2015-04-24 | |
|\ \ | | | | | | | Test client stream cancellation and fix bug exposed by the test. | ||
| | * | Merge branch 'master' of github.com:grpc/grpc into the-purge-2 | 2015-04-24 | |
| | |\ | |_|/ |/| | | | | | | | | Conflicts: include/grpc++/completion_queue.h | ||
* | | | Add a GrpcLibrary class to wrap grpc_init and grpc_shutdown and convert all ↵ | 2015-04-24 | |
| | | | | | | | | | | | | the tests to init/shutdown free. | ||
| | * | Merge branch 'master' of github.com:grpc/grpc into the-purge-2 | 2015-04-24 | |
| | |\ | |_|/ |/| | | | | | | | | | | | | | | Conflicts: src/cpp/client/channel.cc vsprojects/vs2010/grpc++.vcxproj vsprojects/vs2013/grpc++.vcxproj.filters | ||
| * | | Test client stream cancellation and fix bug exposed by the test. | 2015-04-23 | |
|/ / | |||
* | | Merge pull request #1307 from a11r/streamcancel | 2015-04-23 | |
|\ \ | | | | | | | Added e2e tests for server and bidi stream cancellation. | ||
| * | | fixed indentation | 2015-04-23 | |
| | | | |||
* | | | Tweak tests | 2015-04-20 | |
| | | | |||
| * | | Fixed flakes due to OK racing with cancel | 2015-04-17 | |
| | | | |||
| * | | Added end2end test for server streaming rpc cancellation. | 2015-04-17 | |
| | | | |||
| * | | Added test case demonstrating cancel on bidi stream | 2015-04-17 | |
|/ / | |||
| * | Merge branch 'master' of https://github.com/grpc/grpc into the-purge-2 | 2015-04-11 | |
| |\ | |/ |/| | | | | | | | | | Conflicts: test/cpp/end2end/async_end2end_test.cc test/cpp/end2end/end2end_test.cc test/cpp/interop/client.cc | ||
* | | Splitting gRPC service class codegen into its own set of files. | 2015-04-09 | |
| | | |||
| * | Removing a few more references to #include <chrono> | 2015-04-08 | |
| | | |||
| * | Refactoring std::chrono out. | 2015-04-08 | |
|/ | |||
* | Add tests with delayed cancellation from client and server | 2015-03-30 | |
| | |||
* | Clean up unneeded includes and remove shutdown protobuf library | 2015-03-25 | |
| | |||
* | Various Windows fixes. | 2015-03-19 | |
| | | | | | | | | | | | | | | -) using dupenv_s instead of getenv_s and calling strdup ourselves. -) few impossible-to-obtain if checks. -) various signed/unsigned casting. -) using time_t instead of time32_t -) checking output of FormatMessage for failures. -) don't redefine _WIN32_WINNT without undefining it first. -) fixed msvc's interlocked casting. -) renamed AddPort to AddListeningPort. -) added protobuf's third_party includes to search path. -) added a missing definition for inet_ntop in mingw32. -) removed useless declarations. | ||
* | Merge github.com:grpc/grpc into credit | 2015-03-02 | |
|\ | |||
| * | Make it possible to compile with gcc4.6 | 2015-02-26 | |
| | | |||
* | | Merge github.com:grpc/grpc into credit | 2015-02-24 | |
|\| | | | | | | | | | | | | | | | | | | | | | Conflicts: examples/pubsub/publisher_test.cc examples/pubsub/subscriber_test.cc include/grpc++/create_channel.h src/cpp/client/create_channel.cc test/cpp/end2end/async_end2end_test.cc test/cpp/end2end/end2end_test.cc test/cpp/util/create_test_channel.cc | ||
| * | Merge github.com:google/grpc into deprecate-c++ | 2015-02-23 | |
| |\ | | | | | | | | | | | | | | | | Conflicts: test/cpp/end2end/async_end2end_test.cc test/cpp/end2end/end2end_test.cc | ||
| * | | s/CreateChannel/CreateChannelDeprecated | 2015-02-23 | |
| | | | | | | | | | | | | | | | | | | For the 2-argument version of CreateChannel. This is a temporary step until #711 is ready to roll out. | ||
| | * | Move to unique_ptr for all GRPC returned objects | 2015-02-23 | |
| |/ | |||
* | | Update C++ server with new core API | 2015-02-23 | |
| | | | | | | | | And reflects the C++ API in ServerBuilder. |