aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2018-03-15 16:11:05 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2018-03-15 16:11:05 -0700
commit961353ab6d1b48da74e307f805f45509c4a7de7f (patch)
tree689c350ba11a63aee5411d364c592ae81b7e7884 /src
parentf73e76d59682faa44b382e83c9d36c9664d15c23 (diff)
moved filter to ext
Diffstat (limited to 'src')
-rw-r--r--src/core/ext/filters/http/client_authority_filter.cc (renamed from src/core/lib/channel/client_authority_filter.cc)2
-rw-r--r--src/core/ext/filters/http/client_authority_filter.h (renamed from src/core/lib/channel/client_authority_filter.h)6
-rw-r--r--src/core/lib/surface/init.cc1
-rw-r--r--src/python/grpcio/grpc_core_dependencies.py2
4 files changed, 5 insertions, 6 deletions
diff --git a/src/core/lib/channel/client_authority_filter.cc b/src/core/ext/filters/http/client_authority_filter.cc
index bf37f52e9c..5294cfdcc5 100644
--- a/src/core/lib/channel/client_authority_filter.cc
+++ b/src/core/ext/filters/http/client_authority_filter.cc
@@ -26,8 +26,8 @@
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
+#include "src/core/ext/filters/http/client_authority_filter.h"
#include "src/core/lib/channel/channel_args.h"
-#include "src/core/lib/channel/client_authority_filter.h"
#include "src/core/lib/gpr/string.h"
#include "src/core/lib/slice/slice_internal.h"
#include "src/core/lib/slice/slice_string_helpers.h"
diff --git a/src/core/lib/channel/client_authority_filter.h b/src/core/ext/filters/http/client_authority_filter.h
index c101c359d2..5824e91ff2 100644
--- a/src/core/lib/channel/client_authority_filter.h
+++ b/src/core/ext/filters/http/client_authority_filter.h
@@ -16,8 +16,8 @@
*
*/
-#ifndef GRPC_CORE_LIB_CHANNEL_CLIENT_AUTHORITY_FILTER_H
-#define GRPC_CORE_LIB_CHANNEL_CLIENT_AUTHORITY_FILTER_H
+#ifndef GRPC_CORE_EXT_FILTERS_HTTP_CLIENT_AUTHORITY_FILTER_H
+#define GRPC_CORE_EXT_FILTERS_HTTP_CLIENT_AUTHORITY_FILTER_H
#include <grpc/support/port_platform.h>
@@ -31,4 +31,4 @@
extern const grpc_channel_filter grpc_client_authority_filter;
-#endif /* GRPC_CORE_LIB_CHANNEL_CLIENT_AUTHORITY_FILTER_H */
+#endif /* GRPC_CORE_EXT_FILTERS_HTTP_CLIENT_AUTHORITY_FILTER_H */
diff --git a/src/core/lib/surface/init.cc b/src/core/lib/surface/init.cc
index 2d29c7d95f..ac9f9e6066 100644
--- a/src/core/lib/surface/init.cc
+++ b/src/core/lib/surface/init.cc
@@ -27,7 +27,6 @@
#include <grpc/support/log.h>
#include <grpc/support/time.h>
#include "src/core/lib/channel/channel_stack.h"
-#include "src/core/lib/channel/client_authority_filter.h"
#include "src/core/lib/channel/connected_channel.h"
#include "src/core/lib/channel/handshaker_registry.h"
#include "src/core/lib/debug/stats.h"
diff --git a/src/python/grpcio/grpc_core_dependencies.py b/src/python/grpcio/grpc_core_dependencies.py
index bb426b070f..5c9107cf2a 100644
--- a/src/python/grpcio/grpc_core_dependencies.py
+++ b/src/python/grpcio/grpc_core_dependencies.py
@@ -337,7 +337,7 @@ CORE_SOURCE_FILES = [
'src/core/ext/census/grpc_context.cc',
'src/core/ext/filters/max_age/max_age_filter.cc',
'src/core/ext/filters/message_size/message_size_filter.cc',
- 'src/core/lib/channel/client_authority_filter.cc',
+ 'src/core/ext/filters/http/client_authority_filter.cc',
'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
'src/core/ext/filters/workarounds/workaround_utils.cc',
'src/core/plugin_registry/grpc_plugin_registry.cc',