aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/transport/cronet/transport
Commit message (Collapse)AuthorAge
* Remeve memset(0) from arena allocated memory.Gravatar Soheil Hassas Yeganeh2018-11-05
| | | | | | | Callers are updated to properly initialize the memory. This behavior can be overridden using GRPC_ARENA_INIT_STRATEGY environment variable.
* %s/state_op_done[OP_FAILED]/state_callback_received[OP_FAILED]Gravatar Yash Tibrewal2018-08-31
|
* Merge pull request #15782 from markdroth/recv_trailing_metadata_ready3Gravatar Mark D. Roth2018-06-19
|\ | | | | Third attempt: move recv_trailing_metadata into its own callback, don't use on_complete for recv_ops
| * Revert "Merge pull request #15746 from ↵Gravatar Mark D. Roth2018-06-14
| | | | | | | | | | | | | | grpc/revert-15709-recv_trailing_metadata_ready2" This reverts commit 3f9308ce1f8cb42c96901c1700f0b9dbb531f186, reversing changes made to 92a0ae0b1081840d2c5a488f66bf6550c1a492f4.
* | Revert "Add Type Checking On Channel Args"Gravatar Noah Eisen2018-06-14
|/
* Reviewer feedbackGravatar ncteisen2018-06-13
|
* Clean up use of GRPC_ARG_INTEGERGravatar ncteisen2018-06-13
|
* Revert "move recv_trailing_metadata into its own callback, don't use ↵Gravatar Mark D. Roth2018-06-08
| | | | on_complete for recv_ops"
* Move recv_trailing_metadata into its own callback. Don't useGravatar Mark D. Roth2018-06-08
| | | | on_complete for recv_ops.
* Stop using banned functionsGravatar ncteisen2018-05-15
|
* Add GPR_UNLIKELY annotations mainly for the client path in error conditionsGravatar Yash Tibrewal2018-05-04
|
* Convert byte_stream API to C++.Gravatar Mark D. Roth2018-03-09
|
* Add a sanity check for inclusion of port_platform.hGravatar Alexander Polcyn2018-02-23
|
* Build typo fixGravatar Muxi Yan2018-02-21
|
* Put infer_length_after_decode in bin_decoderGravatar Muxi Yan2018-02-21
|
* convert cronet headers to metadata in one functionGravatar Muxi Yan2018-02-21
|
* Fix typoGravatar Muxi Yan2018-02-15
|
* Add binary metadata support for cronet transportGravatar Muxi Yan2018-02-14
|
* Run clang fmtGravatar Noah Eisen2018-02-09
|
* Autofix c casts to c++ castsGravatar Noah Eisen2018-02-09
|
* Merge branch 'master' into gpr_reviewGravatar Vijay Pai2018-02-08
|\
* | Privatize useful.h and avl.hGravatar Vijay Pai2018-02-02
| |
| * Privatize host_port.h; was not used in any wrapped language implementationGravatar Vijay Pai2018-01-25
|/
* Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
|
* Merge masterGravatar Yash Tibrewal2017-12-07
|\
* | Revert "Revert "All instances of exec_ctx being passed around in src/core ↵Gravatar Yash Tibrewal2017-12-06
| | | | | | | | removed""
* | Revert "All instances of exec_ctx being passed around in src/core removed"Gravatar Yash Tibrewal2017-12-06
| |
| * Change GPR_INFO to GPR_ERRORGravatar Muxi Yan2017-12-05
| |
| * Verbose log message in on_failed in Cronet transportGravatar Muxi Yan2017-12-05
| |
* | Merge master after no Extern C changesGravatar Yash Tibrewal2017-11-30
|\|
* | Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
| |
| * clang fmtGravatar ncteisen2017-11-17
| |
| * Remove all extern CGravatar ncteisen2017-11-17
| |
* | Merge masterGravatar Yash Tibrewal2017-11-16
|\|
* | Move ExecCtx to grpc_core namespace. Make exec_ctx a private static in ↵Gravatar Yash Tibrewal2017-11-14
| | | | | | | | ExecCtx and some minor changes
* | Address some PR commentsGravatar Yash Tibrewal2017-11-14
| |
| * s/NULL/nullptrGravatar Craig Tiller2017-11-10
| |
* | Merge with masterGravatar Yash Tibrewal2017-11-09
|\|
| * Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| |
* | Removing instances of exec_ctx being passed around in functions inGravatar Yash Tibrewal2017-10-18
| | | | | | | | | | | | | | | | | | | | | | src/core. exec_ctx is now a thread_local pointer of type ExecCtx instead of grpc_exec_ctx which is initialized whenever ExecCtx is instantiated. ExecCtx also keeps track of the previous exec_ctx so that nesting of exec_ctx is allowed. This means that there is only one exec_ctx being used at any time. Also, grpc_exec_ctx_finish is called in the destructor of the object, and the previous exec_ctx is restored to avoid breaking current functionality. The code still explicitly calls grpc_exec_ctx_finish because removing all such instances causes the code to break.
| * core: fix int conversionGravatar Vincent Batts2017-10-11
|/ | | | | | | | | | | | | build had failed with [-Werror=conversion] on gcc 7 ``` src/core/ext/transport/cronet/transport/cronet_transport.c: In function ‘create_grpc_frame’: src/core/ext/transport/cronet/transport/cronet_transport.c:693:10: error: conversion to ‘uint8_t {aka unsigned char}’ from ‘int’ may alter its value [-Werror=conversion] *p++ = (flags & GRPC_WRITE_INTERNAL_COMPRESS) ? 1 : 0; ^ ``` Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
* cronet dependency for macGravatar Yash Tibrewal2017-10-02
|
* Changes for C to C++. Adding extern C to header files for compatibility.Gravatar Yash Tibrewal2017-10-02
| | | | Also converting to .cc
* Changes for C to C++. Adding extern C to header files for compatibility.Gravatar Yash Tibrewal2017-10-02
|
* More pointer conversions, deprecated string to char *, goto crossing ↵Gravatar Yash Tibrewal2017-10-02
| | | | initializations
* More pointer conversion required after making build changesGravatar Yash Tibrewal2017-10-02
|
* Merge pull request #12369 from markdroth/call_combinerGravatar Mark D. Roth2017-09-07
|\ | | | | Second attempt at call combiner PR
| * Revert "Revert "Implement call combiner""Gravatar Mark D. Roth2017-09-01
| | | | | | | | This reverts commit bf19961d0a49b43cb528392efeb4880eeebb9b5e.
| * Revert "Implement call combiner"Gravatar Mark D. Roth2017-08-29
| |
| * Implement call combiner.Gravatar Mark D. Roth2017-08-25
| |