|
| 1 | +// Copyright 2016-2019 Envoy Project Authors |
| 2 | +// Copyright 2020 Google LLC |
| 3 | +// |
| 4 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +// you may not use this file except in compliance with the License. |
| 6 | +// You may obtain a copy of the License at |
| 7 | +// |
| 8 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +// |
| 10 | +// Unless required by applicable law or agreed to in writing, software |
| 11 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +// See the License for the specific language governing permissions and |
| 14 | +// limitations under the License. |
| 15 | + |
| 16 | +#pragma once |
| 17 | + |
| 18 | +#include <string> |
| 19 | +#include <cstdint> |
| 20 | + |
| 21 | +namespace proxy_wasm { |
| 22 | + |
| 23 | +namespace internal { |
| 24 | + |
| 25 | +// isolate those includes to prevent ::proxy_wasm namespace pollution with std |
| 26 | +// namespace definitions. |
| 27 | +#include "proxy_wasm_common.h" |
| 28 | +#include "proxy_wasm_enums.h" |
| 29 | + |
| 30 | +} // namespace internal |
| 31 | + |
| 32 | +// proxy_wasm_common.h |
| 33 | +using WasmResult = internal::WasmResult; |
| 34 | +using WasmHeaderMapType = internal::WasmHeaderMapType; |
| 35 | +using WasmBufferType = internal::WasmBufferType; |
| 36 | +using WasmBufferFlags = internal::WasmBufferFlags; |
| 37 | +using WasmStreamType = internal::WasmStreamType; |
| 38 | + |
| 39 | +// proxy_wasm_enums.h |
| 40 | +using LogLevel = internal::LogLevel; |
| 41 | +using FilterStatus = internal::FilterStatus; |
| 42 | +using FilterHeadersStatus = internal::FilterHeadersStatus; |
| 43 | +using FilterMetadataStatus = internal::FilterMetadataStatus; |
| 44 | +using FilterTrailersStatus = internal::FilterTrailersStatus; |
| 45 | +using FilterDataStatus = internal::FilterDataStatus; |
| 46 | +using GrpcStatus = internal::GrpcStatus; |
| 47 | +using MetricType = internal::MetricType; |
| 48 | +using CloseType = internal::CloseType; |
| 49 | + |
| 50 | +} // namespace proxy_wasm |
0 commit comments