Kevin Schoedel | b9d8ef1 | 2021-12-08 03:24:49 -0500 | [diff] [blame] | 1 | /* |
| 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 | |
| 34 | namespace chip { |
| 35 | namespace Inet { |
| 36 | |
Kevin Schoedel | f7c8405 | 2021-12-14 08:30:44 -0500 | [diff] [blame] | 37 | using UDPEndPointManagerImpl = EndPointManagerImplPool<UDPEndPointImpl>; |
Kevin Schoedel | b9d8ef1 | 2021-12-08 03:24:49 -0500 | [diff] [blame] | 38 | |
| 39 | } // namespace Inet |
| 40 | } // namespace chip |