aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core
Commit message (Collapse)AuthorAge
...
| | * | | | Remove use of sprintfGravatar Craig Tiller2015-01-23
| | | | | |
| | * | | | Remove use of sprintfGravatar Craig Tiller2015-01-23
| | | | | |
| | * | | | Remove use of sprintfGravatar Craig Tiller2015-01-23
| | | | | |
| | * | | | Remove use of sprintfGravatar Craig Tiller2015-01-23
| |/ / / / |/| | | |
* | | | | Merge pull request #179 from ctiller/kill-printfGravatar jboeuf2015-01-23
|\ \ \ \ \ | | | | | | | | | | | | Remove uses of sprintf
| * | | | | Add constant for min bufsize for timeout encodingGravatar Craig Tiller2015-01-23
| | | | | |
* | | | | | Removed unnecessary test fileGravatar murgatroid992015-01-23
| | | | | |
| * | | | | Move string.h to internal codeGravatar Craig Tiller2015-01-23
| | | | | |
* | | | | | Merge branch 'master' of github.com:google/grpc into merge_new_invoke_apiGravatar murgatroid992015-01-23
|\| | | | |
| | * | | | Update to the latest security APIGravatar Craig Tiller2015-01-23
| | | | | |
| | * | | | Merge github.com:google/grpc into javascriptGravatar Craig Tiller2015-01-23
| | |\ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Merge pull request #153 from ctiller/windows-fixesGravatar Jan Tattermusch2015-01-23
| |\ \ \ \ \ | | | | | | | | | | | | | | Windows fixes
| | * | | | | Fix indentationGravatar Craig Tiller2015-01-22
| | | | | | |
| | | | | | * Replacing cJSON with our own code instead.Gravatar Nicolas Noble2015-01-22
| | | | | | |
| | | | | * | Fix census_log_tests on platforms with only one core.Gravatar maxwell-demon2015-01-22
| | |_|_|/ / | |/| | | |
* | | | | | Merge branch 'master' into merge_new_invoke_apiGravatar murgatroid992015-01-22
|\| | | | |
| * | | | | Bugfix connection code in testGravatar Craig Tiller2015-01-21
| | | | | |
| * | | | | Must init iomgrGravatar Craig Tiller2015-01-21
| | | | | |
| | | | * | Add support for eventfd based kicking on linux.Gravatar David Klempner2015-01-21
| | | | |/ | | | | | | | | | | | | | | | | | | | | This adds support for eventfd based kicking, with the skeleton of support for runtime selection between eventfds and pipes.
* | | | | Resolved merge conflicts with masterGravatar murgatroid992015-01-21
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| | * | | Make this socket creation portableGravatar Craig Tiller2015-01-21
| | | | |
| | * | | This field is 8 bits on MacGravatar Craig Tiller2015-01-21
| |/ / / |/| | |
| | * | Add platform ifdefs, fix up some MSVC warningsGravatar Craig Tiller2015-01-21
| | | |
| | * | Const correctness fixesGravatar Craig Tiller2015-01-21
| | | |
| | | * Clean up formattingGravatar Craig Tiller2015-01-21
| | | |
| | | * Have echo server serve up some htmlGravatar Craig Tiller2015-01-21
| | | |
| | | * Echo server gets securityGravatar Craig Tiller2015-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.
* | / Cap the size of the poll kick freelist.Gravatar David Klempner2015-01-20
| |/ |/| | | | | | | This caps the size of the poll kick freelist at the arbitrary value of 25.
* | Release server credsGravatar Craig Tiller2015-01-19
| |
* | Merge github.com:google/grpc into secGravatar Craig Tiller2015-01-19
|\ \
* | | clang-formatGravatar Craig Tiller2015-01-19
| | |
* | | Allow secure connections with fling serverGravatar Craig Tiller2015-01-19
| | |
| * | Use clang-format-3.5Gravatar Craig Tiller2015-01-18
|/ /
* | Explicitly name the target language.Gravatar Craig Tiller2015-01-18
| | | | | | | | Instead of C++ or not C++, name C++ and C, in preparation for being able to name other languages in the future.
* | Merge pull request #70 from ctiller/benchmarkGravatar vjpai2015-01-16
|\ \ | | | | | | Opportunistically use perftools if installed.
* | | Factor out the pollset kicking mechanism and eliminate shardingGravatar David Klempner2015-01-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | This change pulls out a separate pollset_kick module, which currently uses a freelist of pipes dynamically assigned to pollsets when they enter polling rather than the previous racy sharding mechanism. We ultimately may wish to eliminate the dynamic assignment for multipoll sets, but this should be sufficient for the moment.
| | * Compile fixGravatar Craig Tiller2015-01-16
| | |
| | * Merge branch 'new_invoke_api' of github.com:google/grpc into update-apiGravatar Craig Tiller2015-01-16
| |/| |/| |
* | | clang compile fixesGravatar Craig Tiller2015-01-16
| | |
* | | Merge pull request #88 from ctiller/shutdownGravatar Yang Gao2015-01-16
|\ \ \ | | | | | | | | Add an optional server shutdown event.
| * | | Add an optional server shutdown event.Gravatar Craig Tiller2015-01-16
| | | | | | | | | | | | | | | | | | | | | | | | Allows servers to expedite shutdown once all in-progress calls are completed. We may want to eventually remove grpc_server_shutdown in preference to this.
* | | | Build fixGravatar Craig Tiller2015-01-16
| | | |
* | | | Fix returned statusGravatar Craig Tiller2015-01-16
|/ / / | | | | | | | | | | | | The client should return status deadline exceeded when the deadline is exceeded (not cancelled status)
| * | Include some useful help textGravatar Craig Tiller2015-01-16
| | |
| | * Merge branch 'new_invoke_api' of github.com:google/grpc into updateGravatar Craig Tiller2015-01-15
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/core/surface/call.c test/core/end2end/tests/thread_stress.c tools/run_tests/run_tests.py
* | | | Changing size type in Transport Security (TSI) from uint32_t to size_t:Gravatar Julien Boeuf2015-01-15
| |/ / |/| | | | | | | | Will remove grpc impedance mismatch.
| * | Opportunistically use perftools if installed.Gravatar Craig Tiller2015-01-15
|/ / | | | | | | Allows us to collect profiles of the open source build using gprof.