1
#include "source/common/http/matching/inputs.h"
2

            
3
#include "envoy/registry/registry.h"
4

            
5
namespace Envoy {
6
namespace Http {
7
namespace Matching {
8
REGISTER_FACTORY(HttpRequestHeadersDataInputFactory, Matcher::DataInputFactory<HttpMatchingData>);
9
REGISTER_FACTORY(HttpResponseHeadersDataInputFactory, Matcher::DataInputFactory<HttpMatchingData>);
10
REGISTER_FACTORY(HttpRequestTrailersDataInputFactory, Matcher::DataInputFactory<HttpMatchingData>);
11
REGISTER_FACTORY(HttpResponseTrailersDataInputFactory, Matcher::DataInputFactory<HttpMatchingData>);
12
REGISTER_FACTORY(HttpRequestQueryParamsDataInputFactory,
13
                 Matcher::DataInputFactory<HttpMatchingData>);
14

            
15
} // namespace Matching
16
} // namespace Http
17
} // namespace Envoy