aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/channel_create.c
Commit message (Collapse)AuthorAge
* Fix segfaultGravatar Craig Tiller2015-07-06
| | | | | The server transport started reading fractionally too early, leading to the accept callback not being ready in some cases.
* Fix leaking channel argsGravatar Craig Tiller2015-06-30
|
* clang-format affected filesGravatar Craig Tiller2015-06-30
|
* client_config bugfixesGravatar Craig Tiller2015-06-30
|
* SSL channel args work with client config againGravatar Craig Tiller2015-06-29
|
* DebuggingGravatar Craig Tiller2015-06-29
|
* Simple request unsecure passes with new client_config codeGravatar Craig Tiller2015-06-28
|
* Request/response path starting to workGravatar Craig Tiller2015-06-27
|
* Progress - need to add http filtersGravatar Craig Tiller2015-06-26
|
* Get the success case through to call creationGravatar Craig Tiller2015-06-26
|
* Small fixesGravatar Craig Tiller2015-06-26
|
* Connector progressGravatar Craig Tiller2015-06-26
|
* client_config: chttp2_fullstack_no_op_unsecure_test passesGravatar Craig Tiller2015-06-26
|
* Introduce connector, to help subchannel connectGravatar Craig Tiller2015-06-25
|
* Plumbing transport_op changes throughGravatar Craig Tiller2015-06-25
|
* Refactoring progress towards integrating client configsGravatar Craig Tiller2015-06-25
|
* Merge github.com:grpc/grpc into we-dont-need-no-backupGravatar Craig Tiller2015-06-05
|\
* | clang-formatGravatar Craig Tiller2015-06-05
| |
| * Expose gpr_asprintf and gpr_strdupGravatar Masood Malekghassemi2015-06-03
| |
* | Merge branch 'count-the-things' into we-dont-need-no-backupGravatar Craig Tiller2015-06-01
|\| | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile src/core/iomgr/pollset_posix.c src/core/surface/call.c src/core/surface/channel.c src/core/surface/server.c src/python/src/grpc/_adapter/_low_test.py tools/doxygen/Doxyfile.core.internal
* | Fix memory leak, add debugGravatar Craig Tiller2015-05-29
| |
| * Initial refactoring and context API changesGravatar Alistair Veitch2015-05-26
| |
* | Plumb pollset_set through to tcp setupGravatar Craig Tiller2015-05-08
|/
* clang-formatGravatar Craig Tiller2015-04-23
|
* Beginning transport workGravatar Craig Tiller2015-04-22
|
* Fix a TSAN reported raceGravatar Craig Tiller2015-02-18
| | | | | | | | I think this was the frequent crash in uds_cancel_after_invoke. The race happens because a channel is deleted concurrently with an address being resolved (and UDS gets the resolution fast enough for this to actually happen). The fix is to guarantee no callbacks will be made after cancel has been called (which was the original guaranteee that got lost somewhere).
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* Fixing a few winsocket misuses.Gravatar Nicolas "Pixel" Noble2015-01-24
|
* Move string.h to internal codeGravatar Craig Tiller2015-01-23
|
* Remove endpoint/ directories.Gravatar ctiller2014-12-17
| | | | | | | | | | Fold endpoint interface into iomgr, move secure_endpoint into security/. This will make it easier for endpoint to rely on some iomgr defined types (like pollset). Change on 2014/12/17 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82338036
* Introducing iomgr.Gravatar ctiller2014-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | Move eventmanager and platform dependent endpoint functionality into a single library called 'iomgr'. This is primarily to prepare for a Windows port - where posix socket semantics lead to poor quality code. Mostly this is a code movement CL, with some small changes to help prepare the way for porting: - em style fd objects can only be held internally in iomgr, and own their memory - added grpc_iomgr_create_endpoint_pair() to accomodate the common pattern of creating a tcp endpoint from the output of socketpair - this will help keep our tests portable - separated em alarm interface into a separate file, as this part of event manager is needed higher up the stack - made the eventmanager bits a true singleton, simplifying API's across the stack as there's no longer a reason to carry a pointer there. Initial design document is here: https://docs.google.com/document/d/1VmafcHvvrP5kwtQkz84R5yXF7u7fW-9Pn0bkSUQHDt8/edit?disco=AAAAARNByxg Change on 2014/12/09 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81716456
* Initial import.Gravatar Nicolas Noble2014-11-26