blob: 037c652089cfbe28b415b28611a5bd855943b2da [file] [log] [blame]
Kevin Schoedelb9d8ef12021-12-08 03:24:49 -05001/*
2 *
3 * Copyright (c) 2020-2021 Project CHIP Authors
4 * Copyright (c) 2018 Google LLC
5 * Copyright (c) 2013-2017 Nest Labs, Inc.
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
20/**
21 * This file includes a specific configured concrete implementation of Inet::UDPEndPoint.
22 */
23
24#pragma once
25
26#include <inet/UDPEndPoint.h>
27
28#ifdef INET_UDP_END_POINT_IMPL_CONFIG_FILE
29#include INET_UDP_END_POINT_IMPL_CONFIG_FILE
30#else // INET_UDP_END_POINT_IMPL_CONFIG_FILE
31#error "INET_UDP_END_POINT_IMPL_CONFIG_FILE not defined"
32#endif // INET_UDP_END_POINT_IMPL_CONFIG_FILE
33
34namespace chip {
35namespace Inet {
36
Kevin Schoedelf7c84052021-12-14 08:30:44 -050037using UDPEndPointManagerImpl = EndPointManagerImplPool<UDPEndPointImpl>;
Kevin Schoedelb9d8ef12021-12-08 03:24:49 -050038
39} // namespace Inet
40} // namespace chip