aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/udp_server.cc
Commit message (Collapse)AuthorAge
* Revert "Revert "Fathom tcp changes""Gravatar Yash Tibrewal2018-08-27
|
* Revert "Fathom tcp changes"Gravatar Jan Tattermusch2018-08-27
|
* Fathom TCP level changes. TracedBuffer for keeping track of all buffersGravatar Yash Tibrewal2018-07-16
| | | | | to be traced. Adding tests for Fathom and TracedBuffer. A lot more. Please read PR description.
* Revert "Add Type Checking On Channel Args"Gravatar Noah Eisen2018-06-14
|
* Reviewer feedbackGravatar ncteisen2018-06-13
|
* Remove all uses of raw GRPC_ARG_POINTERGravatar ncteisen2018-06-13
|
* Merge pull request #15648 from apolcyn/remove_fd_shutdown_already_closedGravatar apolcyn2018-06-12
|\ | | | | Remove already_closed param from fd_orphan
| * Remove already_closed param from fd_orphanGravatar Alexander Polcyn2018-06-07
| |
* | Make linux polling engines capable of tracking errors separately withGravatar Yash Tibrewal2018-04-20
|/ | | | backward compatibility.
* Allow udp_server to create multiple listeners for each port via SO_REUSEPORTGravatar Dan Zhang2018-04-12
|
* drop unnecessary/invalid assertsGravatar Eric Gribkoff2018-03-30
|
* Merge master into yashykt:socklentGravatar Yash Tibrewal2018-03-14
|\
* \ Merge branch 'master' into socklentGravatar Yash Tibrewal2018-03-13
|\ \
| * | Remove unncessary castsGravatar Yash Tibrewal2018-03-13
| | |
| | * Abstract libuv implementationGravatar kpayson642018-03-13
| |/ | | | | | | | | Structures the libuv implementation to allow for a plugable BSD style socket implementation to allow for other IO Managers
* / Explicit static_cast conversionsGravatar Yash Tibrewal2018-03-09
|/
* use static_castGravatar Dan Zhang2018-03-06
|
* fix formatGravatar Dan Zhang2018-02-28
|
* fix formatGravatar Dan Zhang2018-02-27
|
* Refactors grpc udp_server_listener to be object oriented. Also adds a mutex ↵Gravatar Dan Zhang2018-02-27
| | | | to each listener. Instead of sharing the mutex in udp_server for all listeners, this per-listener mutex can make most of the call to different listeners in parallel.
* Add a sanity check for inclusion of port_platform.hGravatar Alexander Polcyn2018-02-23
|
* Run clang fmtGravatar Noah Eisen2018-02-09
|
* Add some manual const casts to fix buildGravatar Noah Eisen2018-02-09
|
* Autofix c casts to c++ castsGravatar Noah Eisen2018-02-09
|
* Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
|
* formatGravatar Dan Zhang2018-01-11
|
* %zd->%dGravatar Dan Zhang2018-01-11
|
* change to int typeGravatar Dan Zhang2018-01-11
|
* fix portability errorsGravatar Dan Zhang2018-01-11
|
* change to pass in valueGravatar Dan Zhang2018-01-10
|
* Adjust receiv buffer via setsockopt for udp_server's listening socket.Gravatar Dan Zhang2018-01-10
| | | | | Since this socket is used for all incoming traffic, its current buffer 1MB is appearantly too small. Change it to 10 MB for now.
* Add a start_cb to grpc_udp_listener to be called when listener isGravatar Dan Zhang2017-12-20
| | | | created.
* 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
|
* Merge master into execctxGravatar Yash Tibrewal2017-12-05
|\
| * fix comment formatGravatar Dan Zhang2017-12-01
| |
| * read onceGravatar Dan Zhang2017-12-01
| |
| * fix compile errorGravatar Dan Zhang2017-11-30
| |
| * Modify udp_server to do asynchronous read and write and only re-armGravatar Dan Zhang2017-11-29
| | | | | | | | | | | | | | notification when needed. This change prevents event loop thread from doing actual I/O work which might take long time.
* | Merge masterGravatar Yash Tibrewal2017-11-16
|\|
| * Enable clang-tidy as a sanity check, fix up all known failuresGravatar Craig Tiller2017-11-10
| |
| * 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.
* Changes for C to C++. Adding extern C to header files for compatibility.Gravatar Yash Tibrewal2017-10-02
Also converting to .cc