aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* Merge pull request #11831 from ncteisen/flow-control-part2Gravatar Noah Eisen2017-08-14
|\ | | | | Flow Control Part 2: BDP
| * Pull bdp estimation into flowctl moduleGravatar ncteisen2017-08-13
| |
* | Merge pull request #12130 from y-zeng/oauth2Gravatar Yuchen Zeng2017-08-10
|\ \ | | | | | | Fix use-after-free in oauth2_credentials
* | | Switch to idiomatic Slice APIGravatar Vijay Pai2017-08-09
| |/ |/|
| * Update credentials_testGravatar Yuchen Zeng2017-08-09
|/
* Merge pull request #11579 from sreecha/fix_alarmGravatar Sree Kuchibhotla2017-08-04
|\ | | | | Refcount grpc_alarm object so that grpc_alarm_destroy() can be safely called before cq-next()
* | Add Slice constructors to match all grpc_slice casesGravatar Vijay Pai2017-08-04
| |
* | Add support for service configs to c-ares resolver.Gravatar Mark D. Roth2017-08-03
| |
* | Merge pull request #12025 from vjpai/bazel_unsecGravatar Vijay Pai2017-08-03
|\ \ | | | | | | Test grpc++_unsecure in Bazel build
* \ \ Merge pull request #12046 from y-zeng/portGravatar Yuchen Zeng2017-08-03
|\ \ \ | | | | | | | | Make port picking functions overridable
* \ \ \ Merge pull request #12051 from dgquintas/fix_grpclbend2end_condvarsGravatar David G. Quintas2017-08-03
|\ \ \ \ | | | | | | | | | | Condition variables are not latches
| | | * | Add unsecure libraries to bazel build targetsGravatar Vijay Pai2017-08-02
| |_|/ / |/| | |
| * | | Condition variables are not latchesGravatar David Garcia Quintas2017-08-02
| | | |
| | | * Merge branch 'master' into fix_alarmGravatar Sree Kuchibhotla2017-08-02
| | | |\ | | |_|/ | |/| |
| | * | Group the port picking functionsGravatar Yuchen Zeng2017-08-02
| | | |
| | * | Make port picking functions overridableGravatar Yuchen Zeng2017-08-02
| |/ /
* / / Eliminate copy in QPS DriverGravatar ncteisen2017-08-02
|/ /
| * Merge branch 'master' into fix_alarmGravatar Sree Kuchibhotla2017-08-01
| |\
* | \ Merge branch 'master' of https://github.com/grpc/grpc into flow-control-v3Gravatar ncteisen2017-08-01
|\ \ \ | | |/ | |/|
| * | Merge pull request #12008 from ncteisen/fuzz-direct-leak-in-mallocGravatar Noah Eisen2017-07-31
| |\ \ | | | | | | | | Fix leak if duplicated static metadata
| * \ \ Merge pull request #12009 from ncteisen/convinient-fuzzGravatar Noah Eisen2017-07-31
| |\ \ \ | | | | | | | | | | Convenient Fuzz Tracing
| * \ \ \ Merge pull request #11979 from apolcyn/ensure_cancel_with_status_memory_apiGravatar apolcyn2017-07-31
| |\ \ \ \ | | | | | | | | | | | | Add comment and test for API of a parameter to grpc_call_cancel_with_status
| | | * | | Env var for fuzzer traceGravatar Noah Eisen2017-07-31
| | |/ / / | |/| | |
| | | * | Add reproGravatar Noah Eisen2017-07-31
| | |/ / | |/| |
| * | | Merge pull request #11978 from vjpai/remakeGravatar Vijay Pai2017-07-31
| |\ \ \ | | | | | | | | | | Clean up grpc++_unsecure so that it doesn't require secure content anymore
| * \ \ \ Merge pull request #11703 from yang-g/cq_shutdownGravatar Yang Gao2017-07-31
| |\ \ \ \ | | | | | | | | | | | | Allow adding events to cq after shutdown is called.
| | | * | | Clean up grpc++_unsecure so that it doesn't require secure content anymoreGravatar Vijay Pai2017-07-30
| | |/ / / | |/| | |
| | | * | add comment and test for memory api of grpc_call_cancel_with_statusGravatar Alexander Polcyn2017-07-28
| | | | |
* | | | | Merge branch 'master' of https://github.com/grpc/grpc into flow-control-v3Gravatar ncteisen2017-07-28
|\| | | |
| | * | | Change return type to boolGravatar yang-g2017-07-28
| | | | |
| | * | | Allow adding events to cq after shutdown is called.Gravatar yang-g2017-07-28
| | |/ /
| * | | Merge pull request #11948 from dgquintas/grpclb_fix_rr_shutdown_connectivityGravatar David G. Quintas2017-07-28
| |\ \ \ | | | | | | | | | | Fix bug in handling of RR connectivity transition to SHUTDOWN
| * \ \ \ Merge pull request #11965 from ↵Gravatar David G. Quintas2017-07-28
| |\ \ \ \ | | |_|/ / | |/| | | | | | | | | | | | | dgquintas/grpclb_lb_channel_conn_state_subscription Watch the LB channel using the right initial conn. state
| | | * | Fix bug in handling of RR connectivity transition to SHUTDOWNGravatar David Garcia Quintas2017-07-27
| | | | |
| * | | | Avoid benchmarking allocsGravatar ncteisen2017-07-27
| | |/ / | |/| |
| | * | Watch the LB channel using the right initial conn. stateGravatar David Garcia Quintas2017-07-27
| |/ /
| * | Use new protocol for reporting dropped calls to grpclb balancer.Gravatar Mark D. Roth2017-07-27
| | |
| * | Improvements to grpc_byte_stream API and handling.Gravatar Mark D. Roth2017-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 pull request #11865 from yang-g/avl_interfaceGravatar Yang Gao2017-07-26
| |\ \ | | | | | | | | Adding user_data to avl interface so that an exec_ctx can be passed in.
| * | | grpclb: deal with all-drops serverlistsGravatar David Garcia Quintas2017-07-25
| | | |
| | | * Merge branch 'master' into fix_alarmGravatar Sree Kuchibhotla2017-07-25
| | | |\ | | |_|/ | |/| |
| * | | Merge pull request #11928 from grpc/revert-11572-internalizeGravatar Vijay Pai2017-07-25
| |\ \ \ | | | | | | | | | | Revert "Separate internal-only and public parts of C++ API"
| * \ \ \ Merge pull request #11907 from vjpai/testlastGravatar Vijay Pai2017-07-25
| |\ \ \ \ | | | | | | | | | | | | Move gtest last
| | | | * | Adding exec_ctx to avl vtable functionsGravatar yang-g2017-07-25
| | |_|/ / | |/| | |
| | | * | Remove a follow-on internal that was added post-internalization, keep the ↵Gravatar Vijay Pai2017-07-25
| | | | | | | | | | | | | | | | | | | | templated QPS worker rather than going back to internal API
| | | * | Revert "Separate internal-only and public parts of C++ API"Gravatar Vijay Pai2017-07-25
| | |/ / | |/| |
| * | | Merge pull request #11786 from y-zeng/fd_orphanGravatar Yuchen Zeng2017-07-24
| |\ \ \ | | | | | | | | | | Support closed fd in grpc_fd_orphan()
| * \ \ \ Merge pull request #11733 from markdroth/security_api_cleanupGravatar Mark D. Roth2017-07-24
| |\ \ \ \ | | | | | | | | | | | | Change security interfaces to better handle both sync and async cases.
| * \ \ \ \ Merge pull request #11884 from yashykt/connect-authGravatar Yash Tibrewal2017-07-21
| |\ \ \ \ \ | | | | | | | | | | | | | | HTTP CONNECT Auth support
| | | * | | | Add cancellation to asynchronous security APIs.Gravatar Mark D. Roth2017-07-21
| | | | | | |