Skip to content

Commit

Permalink
Changes to make example buildable with new Envoy include paths (envoy…
Browse files Browse the repository at this point in the history
…proxy#149)

Signed-off-by: Yan Avlasov <[email protected]>
  • Loading branch information
yanavlasov authored Jun 4, 2021
1 parent 65e8552 commit ac6a66a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ envoy_cc_library(
hdrs = ["echo2.h"],
repository = "@envoy",
deps = [
"@envoy//include/envoy/buffer:buffer_interface",
"@envoy//include/envoy/network:connection_interface",
"@envoy//include/envoy/network:filter_interface",
"@envoy//envoy/buffer:buffer_interface",
"@envoy//envoy/network:connection_interface",
"@envoy//envoy/network:filter_interface",
"@envoy//source/common/common:assert_lib",
"@envoy//source/common/common:logger_lib",
],
Expand All @@ -36,9 +36,9 @@ envoy_cc_library(
repository = "@envoy",
deps = [
":echo2_lib",
"@envoy//include/envoy/network:filter_interface",
"@envoy//include/envoy/registry:registry",
"@envoy//include/envoy/server:filter_config_interface",
"@envoy//envoy/network:filter_interface",
"@envoy//envoy/registry:registry",
"@envoy//envoy/server:filter_config_interface",
],
)

Expand Down
2 changes: 1 addition & 1 deletion echo2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "envoy/buffer/buffer.h"
#include "envoy/network/connection.h"

#include "common/common/assert.h"
#include "source/common/common/assert.h"

namespace Envoy {
namespace Filter {
Expand Down
2 changes: 1 addition & 1 deletion echo2.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "envoy/network/filter.h"

#include "common/common/logger.h"
#include "source/common/common/logger.h"

namespace Envoy {
namespace Filter {
Expand Down
2 changes: 1 addition & 1 deletion http-filter-example/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ envoy_cc_library(
repository = "@envoy",
deps = [
":http_filter_lib",
"@envoy//include/envoy/server:filter_config_interface",
"@envoy//envoy/server:filter_config_interface",
],
)

Expand Down
2 changes: 1 addition & 1 deletion http-filter-example/http_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include <string>

#include "extensions/filters/http/common/pass_through_filter.h"
#include "source/extensions/filters/http/common/pass_through_filter.h"

#include "http-filter-example/http_filter.pb.h"

Expand Down

0 comments on commit ac6a66a

Please sign in to comment.