Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge branch 'master' of github.com:grpc/grpc into filters_prio | David Garcia Quintas | 2017-09-06 |
|\ | |||
| * | Merge pull request #12329 from jtattermusch/remove_leftover_vcxproj | Jan Tattermusch | 2017-09-05 |
| |\ | | | | | | | Remove leftover vcxproj files | ||
| | * | remove leftover vcxproj files | Jan Tattermusch | 2017-08-30 |
| | | | |||
| * | | Merge github.com:grpc/grpc into stats | Craig Tiller | 2017-08-29 |
| |\| | |||
* | | | Added way to remove filters from channel stack builder | David Garcia Quintas | 2017-08-24 |
| |/ |/| | |||
* | | Merge remote-tracking branch 'upstream/master' into stream_compression_config | Muxi Yan | 2017-08-23 |
|\ \ | |||
| * | | remove contents of /vsprojects directory | Jan Tattermusch | 2017-08-23 |
| | | | |||
| * | | update readmes | Jan Tattermusch | 2017-08-23 |
| | | | |||
| * | | build C tests and protoc artifacts on windows with cmake | Jan Tattermusch | 2017-08-23 |
| | | | |||
* | | | generate projects | Muxi Yan | 2017-08-15 |
| | | | |||
* | | | Merge remote-tracking branch 'upstream/master' into stream_compression_config | Muxi Yan | 2017-08-11 |
|\| | | |||
| * | | split tsi library into two | jiangtaoli2016 | 2017-08-09 |
| | | | |||
| * | | Update build rule | jiangtaoli2016 | 2017-08-07 |
| | | | |||
| * | | Revert "Revert "Add TSI zero-copy frame protector"" | Jiangtao Li | 2017-08-07 |
| | | | |||
| * | | Revert "Add TSI zero-copy frame protector" | Jiangtao Li | 2017-08-07 |
| | | | |||
| * | | split tsi into two libraries: tsi_interface and tsi | jiangtaoli2016 | 2017-08-04 |
| | | | |||
| * | | Merge branch 'master' into tsi_grpc | jiangtaoli2016 | 2017-08-04 |
| |\ \ | |||
| | * \ | Merge pull request #11579 from sreecha/fix_alarm | Sree Kuchibhotla | 2017-08-04 |
| | |\ \ | | | | | | | | | | | Refcount grpc_alarm object so that grpc_alarm_destroy() can be safely called before cq-next() | ||
| | * | | | Add support for service configs to c-ares resolver. | Mark D. Roth | 2017-08-03 |
| | | | | | |||
| | | * | | Merge branch 'master' into fix_alarm | Sree Kuchibhotla | 2017-08-02 |
| | | |\ \ | | | |/ / | | |/| | | |||
* | | | | | Merge branch 'master' into stream_compression_config | Muxi Yan | 2017-08-02 |
|\ \ \ \ \ | | |/ / / | |/| | | | |||
| | * | | | minor fix | jiangtaoli2016 | 2017-08-02 |
| | | | | | |||
| | | * | | Merge branch 'master' into fix_alarm | Sree Kuchibhotla | 2017-08-01 |
| | | |\ \ | |||
| * | | | | | regenerate projects | ncteisen | 2017-08-01 |
| | | | | | | |||
| * | | | | | Merge branch 'master' of https://github.com/grpc/grpc into flow-control-v3 | ncteisen | 2017-08-01 |
| |\ \ \ \ \ | | | |_|/ / | | |/| | | | |||
| | * | | | | Test against grpc++_unsecure when possible. Provide unsecure version of ↵ | Vijay Pai | 2017-07-31 |
| | | | | | | | | | | | | | | | | | | | | | | | | test_util | ||
| | | * | | | Merge branch 'master' into tsi_grpc | jiangtaoli2016 | 2017-07-31 |
| | | |\ \ \ | | | |/ / / | | |/| | | | |||
| | * | | | | Clean up grpc++_unsecure so that it doesn't require secure content anymore | Vijay Pai | 2017-07-30 |
| | | | | | | |||
| | * | | | | Merge pull request #11927 from y-zeng/nameser | Yuchen Zeng | 2017-07-28 |
| | |\ \ \ \ | | | | | | | | | | | | | | | Add src/core/lib/iomgr/nameser.h | ||
| | | | * | | | Add TSI zero-copy frame protector | jiangtaoli2016 | 2017-07-28 |
| | | |/ / / | | |/| | | | |||
| * | | | | | Merge branch 'master' of https://github.com/grpc/grpc into flow-control-v3 | ncteisen | 2017-07-28 |
| |\| | | | | |||
| | | * | | | Update build.yaml, fix format | Yuchen Zeng | 2017-07-27 |
| | | | | | | |||
* | | | | | | Merge remote-tracking branch 'upstream/master' into stream_compression_config | Muxi Yan | 2017-07-26 |
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | |||
| * | | | | | Improvements to grpc_byte_stream API and handling. | Mark D. Roth | 2017-07-26 |
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add shutdown() method (to be used in forthcoming call combiner code). - Use a vtable instead of storing method pointers in each instance. - Check all callers of pull() to make sure that they are properly handling errors. - Clarify ownership rules and attempt to adhere to them. - Added a new grpc_caching_byte_stream implementation, which is used in http_client_filter to avoid having to read the whole send_message byte stream before passing control down the stack. (This class may also be used in the retry code I'm working on separately.) - As part of this, did a major rewrite of http_client_filter, which made the code more readable and fixed a number of potential bugs. Note that some of this code is hard to test right now, due to the fact that the send_message byte stream is always a slice_buffer stream, for which next() is always synchronous and no destruction is needed. However, some future work (specifically, my call combiner work and Craig's incremental send work) will start leveraging this. | ||
| | | * | | Merge branch 'master' into fix_alarm | Sree Kuchibhotla | 2017-07-25 |
| | | |\ \ | | |_|/ / | |/| | | | |||
| | | | * | Merge github.com:grpc/grpc into stats | Craig Tiller | 2017-07-21 |
| | | | |\ | | |_|_|/ | |/| | | | |||
| * | | | | Merge pull request #11884 from yashykt/connect-auth | Yash Tibrewal | 2017-07-21 |
| |\ \ \ \ | | | | | | | | | | | | | HTTP CONNECT Auth support | ||
| | * | | | | Test credentials are passed with channel arg. Renamed macros and refactored ↵ | Yash Tibrewal | 2017-07-20 |
| | | | | | | | | | | | | | | | | | | | | | | | | code as per suggestions. Renamed test to proxy_auth and changed it to use simple_request instead of a payload. | ||
| | | | | * | Build simplification | Craig Tiller | 2017-07-19 |
| | | | | | | |||
| | * | | | | Merged latest commit from upstream | Yash Tibrewal | 2017-07-19 |
| | |\ \ \ \ | |||
| | * | | | | | Adding connect auth feature. Proxy-Authorization header is being inserted ↵ | Yash Tibrewal | 2017-07-19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | when user creds are present in uri | ||
| | | | * | | | Pull flow control into one module | ncteisen | 2017-07-18 |
| | | |/ / / | |||
| | | | | * | Add a simple stats framework to gRPC C core | Craig Tiller | 2017-07-18 |
| | | | |/ | | | |/| | |||
| * | | | | Merge branch 'master' into uv_portability_fix | murgatroid99 | 2017-07-18 |
| |\ \ \ \ | | | |/ / | | |/| | | |||
| * | | | | Add asserts that uv calls all run on the same thread | murgatroid99 | 2017-07-18 |
| | |/ / | |/| | | |||
| | * | | Merge pull request #11454 from markdroth/server_cq_ok_semantics | Mark D. Roth | 2017-07-18 |
| | |\ \ | | | | | | | | | | | Do not return calls on server when request proto fails to deserialize. | ||
| | * \ \ | Merge pull request #11607 from yihuazhang/tsi_init | Mark D. Roth | 2017-07-18 |
| | |\ \ \ | | | | | | | | | | | | | Add GTS plugin | ||
| | | * | | | Add GTS plugin | Yihua Zhang | 2017-07-17 |
| | | | | | | |||
| | * | | | | Merge pull request #11189 from muxi/stream_compression | Muxi Yan | 2017-07-17 |
| | |\ \ \ \ | | | |/ / / | | |/| | | | Implement stream compression lib module | ||
| | * | | | | Create inproc transport, add relevant tests, exclude irrelevant tests | Vijay Pai | 2017-07-14 |
| |/ / / / |