Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion echo2_config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Echo2ConfigFactory : public NamedNetworkFilterConfigFactory {
return ProtobufTypes::MessagePtr{new Envoy::ProtobufWkt::Empty()};
}

std::string name() const override { return "echo2"; }
std::string name() override { return "echo2"; }

bool isTerminalFilter() override { return true; }
};
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "envoy/server/filter_config.h"

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

namespace Envoy {
namespace Http {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

#include "envoy/registry/registry.h"

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

namespace Envoy {
Expand All @@ -28,7 +28,7 @@ class HttpSampleDecoderFilterConfig : public NamedHttpFilterConfigFactory {
return ProtobufTypes::MessagePtr{new sample::Decoder()};
}

std::string name() const override { return "sample"; }
std::string name() override { return "sample"; }

private:
Http::FilterFactoryCb createFilter(const sample::Decoder& proto_config, FactoryContext&) {
Expand Down