aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Revert "Revert "re-enable ExitTest""Gravatar Eric Gribkoff2018-12-17
| | | | This reverts commit 1bd231605a341bea7ac841b72be212bb8df12f25.
* Merge pull request #17528 from grpc/revert-17466-exit_testsGravatar Juanli Shen2018-12-17
|\ | | | | Revert "re-enable ExitTest"
| * Revert "re-enable ExitTest"Gravatar Juanli Shen2018-12-17
| |
* | extend local credentials to support tcp loopbackGravatar Yihua Zhang2018-12-16
|/
* Merge pull request #17490 from lidizheng/py-status-3Gravatar Lidi Zheng2018-12-14
|\ | | | | Add grpcio-status extension package
| * Assign noop to build_package_protos for backward compatibilityGravatar Lidi Zheng2018-12-14
| |
| * Update docstring to make it more clearGravatar Lidi Zheng2018-12-14
| | | | | | | | | | | | * Mark API as experimental * Rephrase the raise condition * Add more detail to the returned object
* | Merge pull request #17466 from ericgribkoff/exit_testsGravatar Eric Gribkoff2018-12-14
|\ \ | | | | | | re-enable ExitTest
* \ \ Merge pull request #17500 from jiangtaoli2016/client_root_nullGravatar Jiangtao Li2018-12-14
|\ \ \ | | | | | | | | Set SSL_CTX_set_verify even if pem_client_root_certs is null
* \ \ \ Merge pull request #17495 from apolcyn/revise_ares_loggingGravatar apolcyn2018-12-13
|\ \ \ \ | | | | | | | | | | Put most c-ares logs under a tracer
| | | | * Include LICENSE in artifactGravatar Lidi Zheng2018-12-13
| | | | |
| | | | * Fix typo && remove unecessary exceptGravatar Lidi Zheng2018-12-13
| | | | |
* | | | | Merge pull request #17488 from nicolasnoble/revert-windows-logsGravatar Nicolas Noble2018-12-13
|\ \ \ \ \ | | | | | | | | | | | | Reverting #17378
* \ \ \ \ \ Merge pull request #17468 from nicolasnoble/grpc_namespaceGravatar Nicolas Noble2018-12-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Moving ::grpc::Alarm to ::grpc_impl::Alarm.
| | | * | | | Move most c-ares logs under a tracerGravatar Alexander Polcyn2018-12-13
| | | | | | |
| | | | * | | Set SSL_CTX_set_verify even if pem_client_root_certs is nullGravatar jiangtaoli20162018-12-13
| | | | | | |
| | | | | | * Add grpcio-status extension packageGravatar Lidi Zheng2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The new package has 2 API `from_call` and `to_status` * Utilize the experimental API `abort_with_status` * Add 5 unit test cases
* | | | | | | Merge pull request #17291 from soheilhy/worktree-security-cppGravatar Soheil Hassas Yeganeh2018-12-13
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | Move security credentials, connectors, and auth context to C++
| * | | | | | Move security credentials, connectors, and auth context to C++Gravatar Soheil Hassas Yeganeh2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is to use `grpc_core::RefCount` to improve performnace. This commit also replaces explicit C vtables, with C++ vtable with its own compile time assertions and performance benefits. It also makes use of `RefCountedPtr` wherever possible.
| | | | | * | re-enable unit._exit_test.ExitTestGravatar Eric Gribkoff2018-12-12
| | | | |/ /
* | | | | | Merge pull request #17470 from apolcyn/cares_default_prepGravatar apolcyn2018-12-12
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Avoid SRV and TXT lookups for localhost
* | | | | | Merge pull request #17481 from lidizheng/py-status-2Gravatar Lidi Zheng2018-12-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | New abort with grpc.Status API
* \ \ \ \ \ \ Merge pull request #17484 from grpc/create-census-contextGravatar Richard Belleville2018-12-12
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Actually build CensusContext
| | | | | | * | Revert "basic tcp_trace support for windows"Gravatar Nicolas "Pixel" Noble2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 5861f082607344ed42215ac341e97e4b4bbf0abc.
| | | | | | * | Revert "better slice management for win_read"Gravatar Nicolas "Pixel" Noble2018-12-13
| |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | This reverts commit b0139e15425196be518b251dbdfa3b86648b4740.
* | | | | | | Merge pull request #17482 from markdroth/remove_memory_alignment_hackGravatar Mark D. Roth2018-12-12
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Revert alignment hack in New<> and Delete<>.
| | * | | | | | Actually build CensusContextGravatar Richard Belleville2018-12-12
| | | | | | | |
| | | * | | | | Update the documentation about the status code constraintGravatar Lidi Zheng2018-12-12
| | | | | | | |
* | | | | | | | Merge pull request #17480 from apolcyn/revert_upbGravatar apolcyn2018-12-12
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | Revert "Changes add a script for generating C code and build rule for…
| | | * | | | | New abort with grpc.Status APIGravatar Lidi Zheng2018-12-12
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add `abort_with_status` method in ServicerContext * Add `Status` interface similar to the design of Details in interceptor * Add 3 unit test cases for abort mechanism
| | * | | | | Revert alignment hack in New<> and Delete<>.Gravatar Mark D. Roth2018-12-12
| |/ / / / / |/| | | | |
| | * | | | Disable SRV and TXT lookups for localhostGravatar Alexander Polcyn2018-12-12
| | | |_|/ | | |/| |
| * / | | Revert "Changes add a script for generating C code and build rule for protobuf"Gravatar Alexander Polcyn2018-12-12
| |/ / / | | | | | | | | | | | | This reverts commit 62027b7e14624283f758a7785a0a1347eda0a147.
* | | | Merge pull request #17421 from grpc/serial-queue-commentGravatar Muxi Yan2018-12-12
|\ \ \ \ | |/ / / |/| | | Update GRPCCall doc to clarify serial queue requirement
| | | * Moving ::grpc::Alarm to ::grpc_impl::Alarm.Gravatar Nicolas "Pixel" Noble2018-12-12
| | | |
* | | | Merge pull request #17364 from vishalpowar/generate_buildGravatar vishalpowar2018-12-11
|\ \ \ \ | | | | | | | | | | Changes add a script for generating C code and build rule for protobuf
| * | | | Changes add a script for generating C code and build rule for protobufGravatar Vishal Powar2018-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | protos All these changes need to go together to make sense - changes to use new version of upb in bazel - allowing includes in build target option - script for generating c code for protos - generated code for example build - adding changes for non-bazel builds - change sanity tests to ignore the generated files.
* | | | | Merge pull request #17460 from grpc/enable-censusGravatar Richard Belleville2018-12-11
|\ \ \ \ \ | |_|_|/ / |/| | | | Add hooks for census context propagation
| * | | | Add hooks for census context propagationGravatar Richard Belleville2018-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Appease the yapf gods Reformat
* | | | | Merge pull request #17456 from ncteisen/socket-paginationGravatar Noah Eisen2018-12-11
|\ \ \ \ \ | | | | | | | | | | | | Channelz: Add Pagination to ServerSockets
| * | | | | Add test and fix bugGravatar ncteisen2018-12-11
| | | | | |
| * | | | | reviewer feedbackGravatar ncteisen2018-12-11
| | | | | |
| * | | | | Add max_results to ServerSocketsGravatar ncteisen2018-12-11
| | | | | |
| * | | | | Update channelz protoGravatar ncteisen2018-12-11
| | | | | |
* | | | | | Revert "Revert "Allow encoding arbitrary channel args on a per-address basis.""Gravatar Mark D. Roth2018-12-11
| |/ / / / |/| | | |
* | | | | Merge pull request #17457 from muxi/alternate-debug-countersGravatar Muxi Yan2018-12-10
|\ \ \ \ \ | | | | | | | | | | | | Add more counters to debug the timer crash on iOS
| | * | | | Add pagination to serversocketsGravatar ncteisen2018-12-10
| |/ / / / |/| | | |
| * | | | clang-formatGravatar Muxi Yan2018-12-10
| | | | |
| * | | | Add next_value and start_timeGravatar Muxi Yan2018-12-10
| | | | |
| | | * | clang-formatGravatar Muxi Yan2018-12-10
| | | | |