aboutsummaryrefslogtreecommitdiffhomepage
path: root/grpc.gemspec
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-23 14:47:40 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-23 14:47:40 -0700
commit8ce3b1ad89ad1e512710489750804bbae3250e3e (patch)
tree9c67d91ae6c02170005d3ba601671e26beec5325 /grpc.gemspec
parent5ce5d825df7f73e39b1400b2700bf1e6a398addd (diff)
parent1824f0519f26b00cb5e95e52ea50c7990223157c (diff)
Merge pull request #5383 from miselin/add_request_parsing
Add HTTP request parsing
Diffstat (limited to 'grpc.gemspec')
-rwxr-xr-xgrpc.gemspec14
1 files changed, 7 insertions, 7 deletions
diff --git a/grpc.gemspec b/grpc.gemspec
index 53744ef34c..eeda035ee8 100755
--- a/grpc.gemspec
+++ b/grpc.gemspec
@@ -190,9 +190,9 @@ Gem::Specification.new do |s|
s.files += %w( src/core/compression/algorithm_metadata.h )
s.files += %w( src/core/compression/message_compress.h )
s.files += %w( src/core/debug/trace.h )
- s.files += %w( src/core/httpcli/format_request.h )
- s.files += %w( src/core/httpcli/httpcli.h )
- s.files += %w( src/core/httpcli/parser.h )
+ s.files += %w( src/core/http/format_request.h )
+ s.files += %w( src/core/http/httpcli.h )
+ s.files += %w( src/core/http/parser.h )
s.files += %w( src/core/iomgr/closure.h )
s.files += %w( src/core/iomgr/endpoint.h )
s.files += %w( src/core/iomgr/endpoint_pair.h )
@@ -332,9 +332,9 @@ Gem::Specification.new do |s|
s.files += %w( src/core/compression/compression_algorithm.c )
s.files += %w( src/core/compression/message_compress.c )
s.files += %w( src/core/debug/trace.c )
- s.files += %w( src/core/httpcli/format_request.c )
- s.files += %w( src/core/httpcli/httpcli.c )
- s.files += %w( src/core/httpcli/parser.c )
+ s.files += %w( src/core/http/format_request.c )
+ s.files += %w( src/core/http/httpcli.c )
+ s.files += %w( src/core/http/parser.c )
s.files += %w( src/core/iomgr/closure.c )
s.files += %w( src/core/iomgr/endpoint.c )
s.files += %w( src/core/iomgr/endpoint_pair_posix.c )
@@ -432,7 +432,7 @@ Gem::Specification.new do |s|
s.files += %w( src/core/transport/static_metadata.c )
s.files += %w( src/core/transport/transport.c )
s.files += %w( src/core/transport/transport_op_string.c )
- s.files += %w( src/core/httpcli/httpcli_security_connector.c )
+ s.files += %w( src/core/http/httpcli_security_connector.c )
s.files += %w( src/core/security/b64.c )
s.files += %w( src/core/security/client_auth_filter.c )
s.files += %w( src/core/security/credentials.c )