aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/channel/http_client_filter.c
Commit message (Collapse)AuthorAge
* Client now swallows content-type on receiveGravatar David Garcia Quintas2015-09-18
|
* Fix a case where :status could be returned to applicationsGravatar Craig Tiller2015-09-04
|
* Refactor default host name resolutionGravatar Craig Tiller2015-08-24
| | | | | | | | Rephrase API's such that resolvers are constrained to be able to provide a default host given just the text of the URI channel target. This avoids needing to rewrite such details in the core library during retries, and generally makes things much saner to debug.
* Respond to reviewGravatar Craig Tiller2015-07-31
|
* Merge github.com:grpc/grpc into yeah-we-know-what-youre-talking-aboutGravatar Craig Tiller2015-07-29
|\ | | | | | | | | | | Conflicts: src/core/channel/http_client_filter.c src/core/surface/channel.c
* | Add a hook for sending default authority when neededGravatar Craig Tiller2015-07-26
| |
| * Integration fixGravatar Craig Tiller2015-07-23
|/
* Merge pull request #2542 from ctiller/tell-me-who-you-might-beGravatar Yang Gao2015-07-23
|\ | | | | Expose call peer uri from C core
* \ Merge pull request #2622 from ctiller/look-at-the-treesGravatar Yang Gao2015-07-22
|\ \ | | | | | | Prevent applications from sending reserved metadata
| * | Filter out reserved metadata so that applications cant mess us upGravatar Craig Tiller2015-07-22
| | |
| | * Add grpc_call_get_peerGravatar Craig Tiller2015-07-20
| |/
* / User agent string supportGravatar Craig Tiller2015-07-18
|/
* Add metadata refcount debuggingGravatar Craig Tiller2015-07-06
|
* clang-format affected filesGravatar Craig Tiller2015-06-30
|
* DebuggingGravatar Craig Tiller2015-06-29
|
* Request/response path starting to workGravatar Craig Tiller2015-06-27
|
* Plumbing transport_op changes throughGravatar Craig Tiller2015-06-25
|
* Merge branch 'oops-i-split-it-again' into tis-but-thy-nameGravatar Craig Tiller2015-06-25
|\
* | s/grpc_transport_op/grpc_transport_stream_op/gGravatar Craig Tiller2015-06-25
| |
| * Added commentsGravatar Craig Tiller2015-06-24
| |
| * Refactor progressGravatar Craig Tiller2015-06-11
|/
* clang-formatGravatar Craig Tiller2015-04-23
|
* Flesh out initial_opGravatar Craig Tiller2015-04-23
|
* Merge branch 'batch-metadata' of github.com:ctiller/grpc into one-passGravatar Craig Tiller2015-04-22
|\ | | | | | | | | | | Conflicts: src/core/channel/http_client_filter.c src/core/channel/http_server_filter.c
* | stuffGravatar Craig Tiller2015-04-21
| |
| * Fix indentationGravatar Craig Tiller2015-04-21
|/
* Move metadata batching to stream_opGravatar Craig Tiller2015-04-16
|
* clang-formatGravatar Craig Tiller2015-04-16
|
* Switching to batch oriented metadata passingGravatar Craig Tiller2015-04-16
|
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* Check :status headerGravatar Craig Tiller2015-02-03
|
* Re-enabling errors on warning, disabling unused parameter warning, and ↵Gravatar Nicolas "Pixel" Noble2015-01-30
| | | | fixing all subsequent errors.
* sync up with masterGravatar Yang Gao2015-01-27
|\
* | run clang-formatGravatar Yang Gao2015-01-26
| |
| * Make send/recv_metadata take ownership of passed in metadataGravatar Craig Tiller2015-01-21
|/
* Use clang-format-3.5Gravatar Craig Tiller2015-01-18
|
* Review changes for :scheme conversion to http[s]Gravatar David Klempner2015-01-14
| | | | | | 1. scheme_from_args should return const char* 2. Rename grpc.scheme arg to grpc.http2_scheme, and define a macro for it.
* Send a scheme of http or https as appropriate, rather than grpc.Gravatar David Klempner2015-01-13
| | | | | | This requires additional logic to determine whether to send http or https. This change assumes a default of http, and plumbs down https through a synthesized channel arg when using the ssl transport.
* Pre allocate client side strings per channel for method, scheme, path, andGravatar klempner2014-12-19
| | | | | | | | | | authority. For method and scheme, move these from channel to http_client_filter. Change on 2014/12/19 by klempner <klempner@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82536909
* Tell call/channel op handlers who is invoking them.Gravatar ctiller2014-12-11
| | | | | | | | | | This change adds a parameter to all op handlers specifying the invoking filter. It will be used to allow client_channel to distinguish which child channel is disconnecting or going away. Change on 2014/12/10 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81823231
* Initial import.Gravatar Nicolas Noble2014-11-26