aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/impl
Commit message (Collapse)AuthorAge
* Use call context to propagare LR costsGravatar David Garcia Quintas2017-02-13
|
* Fix read from uninitialized memory bug in GrpcBufferWriter.Gravatar Harvey Tuch2017-02-07
| | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes an issue in which the following sequence of operations leads to use of uninitialized memory: 1. Caller invokes GrpcBufferWriter::Next(), and then makes use of 8191 bytes in the returned buffer (which is 8192 bytes in size). 2. Caller then returns the unused single byte via GrpcBufferWriter::BackUp(). This method invokes g_core_codegen_interface->grpc_slice_split_tail(), which causes backup_slice_ to be a grpc_slice with one byte. 3. At the next invocation of GrpcBufferWriter::Next(), a reference to the single byte grpc_slice is returned to the caller. The problem here is that the returned reference is to the inlined buffer in the grpc_slice, which is resident in slice_, not the location of the buffer inside slice_buffer_ after g_core_codegen_interface->grpc_slice_buffer_add() in GrpcBufferWriter::Next(). As a result, any data the caller writes to the returned void* data is lost. The solution is to avoid inlined backup slices.
* Merge github.com:grpc/grpc into rollfwdGravatar Craig Tiller2017-01-27
|\
| * Merge github.com:grpc/grpc into maxmsgszGravatar Craig Tiller2017-01-26
| |\
* | \ Merge github.com:grpc/grpc into rollfwdGravatar Craig Tiller2017-01-26
|\ \ \ | | |/ | |/|
| * | Move parameters for all grpc_op types into their own sub-structs.Gravatar Mark D. Roth2017-01-25
| | |
* | | Revert "Revert "Metadata handling rewrite""Gravatar Craig Tiller2017-01-23
|/ / | | | | | | This reverts commit 5e01e2ac977655aa074faf7fde0a74298f5e4c55.
* | Revert "Metadata handling rewrite"Gravatar Craig Tiller2017-01-20
| |
| * Merge github.com:grpc/grpc into maxmsgszGravatar Craig Tiller2017-01-20
| |\ | |/ |/|
* | Merge github.com:grpc/grpc into metadata_filterGravatar Craig Tiller2017-01-20
|\ \
| | * Fix integer overflowGravatar Craig Tiller2017-01-19
| | |
| * | Merge branch 'master' into its_compatGravatar Vijay Pai2017-01-19
| |\ \
| | | * Remove double-checking of max-message-size in C++ layersGravatar Craig Tiller2017-01-19
| | |/
* | | Remove bogus assertGravatar Craig Tiller2017-01-12
| | |
* | | Merge github.com:grpc/grpc into fix_errorsGravatar Craig Tiller2017-01-06
|\ \ \ | | |/ | |/|
| * | Small improvements to generated documentationGravatar Craig Tiller2017-01-06
| | |
| | * Support compat with old generated PB filesGravatar Vijay Pai2016-12-13
| |/
* | Fix stack corruptionGravatar Craig Tiller2016-12-08
| |
* | Fix include guardsGravatar Craig Tiller2016-12-08
| |
* | Start resolving memory issues in C++ metadataGravatar Craig Tiller2016-12-08
| |
* | Merge branch 'slice_interning' into metadata_filterGravatar Craig Tiller2016-12-06
|\|
| * gpr_atm isn't automatically initialized to 0. Thanks Obama.Gravatar Vijay Pai2016-12-05
| |
| * clang-formatGravatar Vijay Pai2016-12-05
| |
| * Track requests that could cause other requests to be created, and don't doGravatar Vijay Pai2016-12-05
| | | | | | | | a real core shutdown of a CQ until such requests are done
* | C++ compilesGravatar Craig Tiller2016-11-21
| |
* | Start moving C++ to slice interfacesGravatar Craig Tiller2016-11-21
|/
* Merge pull request #8086 from y-zeng/fix_gprcGravatar Yuchen Zeng2016-11-11
|\ | | | | Fix misspelled gprc
* \ Merge github.com:grpc/grpc into grpc_sliceGravatar Craig Tiller2016-11-04
|\ \
| * | Deprecate grpc::thread and sync in favor of std::thread,mutex,etcGravatar Vijay Pai2016-11-01
| | |
| * | Remove references to NO_CHRONO optionGravatar Vijay Pai2016-11-01
| | |
| * | Remove separate versions of code based on presence of threading in compilerGravatar Vijay Pai2016-11-01
| | |
| * | clang-formatGravatar Vijay Pai2016-11-01
| | |
| * | Use C++11 final and overrideGravatar Vijay Pai2016-11-01
| | |
| * | Stop supporting non-C++11 conformant compilersGravatar Vijay Pai2016-11-01
| | |
* | | Merge github.com:grpc/grpc into grpc_sliceGravatar Craig Tiller2016-10-31
|\| |
* | | clang-formatGravatar Craig Tiller2016-10-26
| | |
* | | Fix include guardsGravatar Craig Tiller2016-10-26
| | |
* | | s/GPR_SLICE/GRPC_SLICE/gGravatar Craig Tiller2016-10-26
| | |
* | | s/gpr_slice/grpc_slice, and move around tests, implsGravatar Craig Tiller2016-10-26
| | |
| * | Merge branch 'master' into rpc_mgrGravatar Sree Kuchibhotla2016-10-21
| |\ \ | |/ / |/| |
* | | Merge pull request #8365 from vjpai/fc_1dstreamGravatar Vijay Pai2016-10-20
|\ \ \ | | | | | | | | Support request separation of server-side streamed RPC
* | | | Remove a useless forward declarationGravatar Vijay Pai2016-10-20
| | | |
| | * | Merge branch 'master' into rpc_mgrGravatar Sree Kuchibhotla2016-10-18
| | |\ \ | |_|/ / |/| | |
| * | | Merge remote-tracking branch 'upstream/master' into fc_1dstreamGravatar Vijay Pai2016-10-18
| |\ \ \ | |/ / / |/| | |
| | | * Merge remote-tracking branch 'upstream/master' into fix_gprcGravatar Yuchen Zeng2016-10-17
| | | |\
* | | | | Add a test spouse for server contextGravatar yang-g2016-10-13
| |_|_|/ |/| | |
| * | | clang-formatGravatar Vijay Pai2016-10-13
| | | |
| * | | Bug fix on failure conditionGravatar Vijay Pai2016-10-13
| | | |
| | * | Merge branch 'master' into rpc_mgrGravatar Sree Kuchibhotla2016-10-13
| | |\ \ | |_|/ / |/| | |
| * | | Making split streaming testableGravatar Vijay Pai2016-10-13
| | | |