/* * * Copyright (c) 2021 Project CHIP Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #if INET_CONFIG_ENABLE_TCP_ENDPOINT #include #endif // INET_CONFIG_ENABLE_TCP_ENDPOINT #include #if INET_CONFIG_ENABLE_TCP_ENDPOINT inline constexpr size_t kMaxTcpActiveConnectionCount = 4; inline constexpr size_t kMaxTcpPendingPackets = 4; #endif inline constexpr chip::System::Clock::Timeout kResponseTimeOut = chip::System::Clock::Seconds16(1); extern chip::FabricTable gFabricTable; extern chip::secure_channel::MessageCounterManager gMessageCounterManager; extern chip::Messaging::ExchangeManager gExchangeManager; extern chip::SessionManager gSessionManager; extern chip::Inet::IPAddress gDestAddr; extern chip::SessionHolder gSession; extern chip::TestPersistentStorageDelegate gStorage; extern chip::FabricIndex gFabricIndex; #if INET_CONFIG_ENABLE_TCP_ENDPOINT extern chip::TransportMgr> gTCPManager; #endif extern chip::TransportMgr gUDPManager;