aboutsummaryrefslogtreecommitdiffhomepage
path: root/config.m4
diff options
context:
space:
mode:
authorGravatar Matthew Iselin <matthew@theiselins.net>2016-02-10 12:16:06 +1100
committerGravatar Matthew Iselin <matthew@theiselins.net>2016-03-23 13:22:32 +1100
commit1824f0519f26b00cb5e95e52ea50c7990223157c (patch)
tree7f052ec5e461f07e12821f50ed9fc4cd0b53bd50 /config.m4
parent39fd22193bedbef97412c857c2d2f73eb5752d2c (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 'config.m4')
-rw-r--r--config.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/config.m4 b/config.m4
index 2d42c405ec..e8ee56f210 100644
--- a/config.m4
+++ b/config.m4
@@ -114,9 +114,9 @@ if test "$PHP_GRPC" != "no"; then
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 \
@@ -212,7 +212,7 @@ if test "$PHP_GRPC" != "no"; then
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 \
@@ -551,7 +551,7 @@ if test "$PHP_GRPC" != "no"; then
PHP_ADD_BUILD_DIR($ext_builddir/src/core/client_config/resolvers)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/compression)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/debug)
- PHP_ADD_BUILD_DIR($ext_builddir/src/core/httpcli)
+ PHP_ADD_BUILD_DIR($ext_builddir/src/core/http)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/iomgr)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/json)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/profiling)