Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge pull request #1447 from ctiller/magical-void-pointers | jboeuf | 2015-05-05 |
|\ | | | | | Add per-call context pointer API | ||
* \ | Merge pull request #1464 from yang-g/init | Craig Tiller | 2015-05-05 |
|\ \ | | | | | | | Expose max message size at the server side. | ||
| * | | resolve comments | Yang Gao | 2015-05-04 |
| | | | |||
| * | | merge with head | Yang Gao | 2015-05-04 |
| |\ \ | |||
* | | | | Added missing profiling tags. | David Garcia Quintas | 2015-05-04 |
| |/ / |/| | | |||
| * | | clang-format | Yang Gao | 2015-05-04 |
| | | | |||
| * | | fix a deadlock in cancel call | Yang Gao | 2015-05-04 |
| | | | |||
| | * | Add per-call context pointer API | Craig Tiller | 2015-05-01 |
| |/ | |||
* | | Merge github.com:grpc/grpc into one-read | Craig Tiller | 2015-05-01 |
|\| | | | | | | | | | | | Conflicts: src/core/iomgr/tcp_posix.c src/core/profiling/basic_timers.c | ||
| * | Merge github.com:grpc/grpc into delete-the-old-api | Craig Tiller | 2015-05-01 |
| |\ | | | | | | | | | | | | | Conflicts: vsprojects/Grpc.mak | ||
| | * | Ensure call alarms are cancelled when the underlying stream closes | Craig Tiller | 2015-04-30 |
| | | | |||
| * | | Remove ungeneratable enum values and union members | Craig Tiller | 2015-04-29 |
| | | | |||
* | | | Add some helpful timing markers | Craig Tiller | 2015-04-28 |
| | | | |||
| * | | Remove _old apis from the core library | Craig Tiller | 2015-04-28 |
| |/ | |||
* / | Refine need_more_data | Craig Tiller | 2015-04-28 |
|/ | | | | | | We don't need to request more transport data if we: - already have queued messages - are not ready to receive messages | ||
* | Add some infrastructure for call refcount debugging | Craig Tiller | 2015-04-28 |
| | |||
* | Fix use-after-free in lame client test | Craig Tiller | 2015-04-24 |
| | |||
* | remove annotations | Craig Tiller | 2015-04-24 |
| | |||
* | Fix memory leak | Craig Tiller | 2015-04-24 |
| | |||
* | Fix memory leak | Craig Tiller | 2015-04-24 |
| | |||
* | annotations - revert later | Craig Tiller | 2015-04-24 |
| | |||
* | Fix memory leak | Craig Tiller | 2015-04-24 |
| | |||
* | clang-format | Craig Tiller | 2015-04-24 |
| | |||
* | Always wait for all ops to finish | Craig Tiller | 2015-04-24 |
| | |||
* | Bug fixing | Craig Tiller | 2015-04-24 |
| | |||
* | Stream mapping fixes | Craig Tiller | 2015-04-24 |
| | |||
* | Take a lock every time through client_channel - to simplify logic and ensure ↵ | Craig Tiller | 2015-04-24 |
| | | | | correctness | ||
* | call progress | Craig Tiller | 2015-04-24 |
| | |||
* | Fix uninitialized variable | Craig Tiller | 2015-04-23 |
| | |||
* | Add a hack to ensure one-op-at-a-time during connection establishment | Craig Tiller | 2015-04-23 |
| | |||
* | Add init/destroy, and a debug-only assert on bad headers | Craig Tiller | 2015-04-23 |
| | |||
* | Make the things compile again | Craig Tiller | 2015-04-23 |
| | |||
* | Fix double-set of alarm | Craig Tiller | 2015-04-23 |
| | |||
* | Flesh out initial_op | Craig Tiller | 2015-04-23 |
| | |||
* | One test compiles | Craig Tiller | 2015-04-22 |
| | |||
* | Call compiles | Craig Tiller | 2015-04-22 |
| | |||
* | Merge branch 'batch-metadata' of github.com:ctiller/grpc into one-pass | Craig Tiller | 2015-04-22 |
|\ | | | | | | | | | | | Conflicts: src/core/channel/http_client_filter.c src/core/channel/http_server_filter.c | ||
* | | call progress | Craig Tiller | 2015-04-22 |
| | | |||
* | | stuff | Craig Tiller | 2015-04-21 |
| | | |||
| * | Add !=NULL | Craig Tiller | 2015-04-21 |
| | | |||
| * | Use GPR_ASSERT here | Craig Tiller | 2015-04-21 |
|/ | |||
* | Fix remaining allocation bugs | Craig Tiller | 2015-04-17 |
| | |||
* | clang-format | Craig Tiller | 2015-04-17 |
| | |||
* | Got rid of GRPC_SEND_START | Craig Tiller | 2015-04-17 |
| | |||
* | Move metadata batching to stream_op | Craig Tiller | 2015-04-16 |
| | |||
* | clang-format | Craig Tiller | 2015-04-16 |
| | |||
* | Switching to batch oriented metadata passing | Craig Tiller | 2015-04-16 |
| | |||
* | Added batch GRPC_TRACE option to trace calls to grpc_call_start_batch | murgatroid99 | 2015-03-09 |
| | |||
* | Fix ref counting | Craig Tiller | 2015-03-05 |
| | |||
* | Allow only one thread to complete ioreqs at once | Craig Tiller | 2015-03-03 |
| | | | | | | | Otherwise we can get a total-queue-ordering violation and complete some ioreqs out-of-order. This leads to events being pushed to the completion queue out-of-order, and that leads to applications believing streams are completed before receiving the last message. |