diff options
author | Matthew Iselin <matthew@theiselins.net> | 2016-02-10 12:16:06 +1100 |
---|---|---|
committer | Matthew Iselin <matthew@theiselins.net> | 2016-03-23 13:22:32 +1100 |
commit | 1824f0519f26b00cb5e95e52ea50c7990223157c (patch) | |
tree | 7f052ec5e461f07e12821f50ed9fc4cd0b53bd50 /src/python/grpcio | |
parent | 39fd22193bedbef97412c857c2d2f73eb5752d2c (diff) |
Add HTTP request parsing.
This extends the existing http parser to support requests as well as responses.
httpcli continues to exist and work as it has previously, though in the new
directory src/core/http (to reflect the fact the directory now contains code
relevant to parsing requests, which httpcli would not generally involve itself
in).
Diffstat (limited to 'src/python/grpcio')
-rw-r--r-- | src/python/grpcio/grpc_core_dependencies.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/python/grpcio/grpc_core_dependencies.py b/src/python/grpcio/grpc_core_dependencies.py index 29506e69bc..ef3d6dd17a 100644 --- a/src/python/grpcio/grpc_core_dependencies.py +++ b/src/python/grpcio/grpc_core_dependencies.py @@ -108,9 +108,9 @@ CORE_SOURCE_FILES = [ 'src/core/compression/compression_algorithm.c', 'src/core/compression/message_compress.c', 'src/core/debug/trace.c', - 'src/core/httpcli/format_request.c', - 'src/core/httpcli/httpcli.c', - 'src/core/httpcli/parser.c', + 'src/core/http/format_request.c', + 'src/core/http/httpcli.c', + 'src/core/http/parser.c', 'src/core/iomgr/closure.c', 'src/core/iomgr/endpoint.c', 'src/core/iomgr/endpoint_pair_posix.c', @@ -206,7 +206,7 @@ CORE_SOURCE_FILES = [ 'src/core/transport/static_metadata.c', 'src/core/transport/transport.c', 'src/core/transport/transport_op_string.c', - 'src/core/httpcli/httpcli_security_connector.c', + 'src/core/http/httpcli_security_connector.c', 'src/core/security/b64.c', 'src/core/security/client_auth_filter.c', 'src/core/security/credentials.c', |