Coverage Report

Created: 2026-01-24 06:26

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openweave-core/src/inet/EndPointBasis.cpp
Line
Count
Source
1
/*
2
 *
3
 *    Copyright (c) 2015-2017 Nest Labs, Inc.
4
 *    All rights reserved.
5
 *
6
 *    Licensed under the Apache License, Version 2.0 (the "License");
7
 *    you may not use this file except in compliance with the License.
8
 *    You may obtain a copy of the License at
9
 *
10
 *        http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 *    Unless required by applicable law or agreed to in writing, software
13
 *    distributed under the License is distributed on an "AS IS" BASIS,
14
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 *    See the License for the specific language governing permissions and
16
 *    limitations under the License.
17
 */
18
19
/**
20
 *    @file
21
 *      This file contains the external implementations of methods in
22
 *      the basis class for all the various transport endpoint classes
23
 *      in the Inet layer, i.e. TCP, UDP, Raw and Tun.
24
 */
25
26
#include <InetLayer/EndPointBasis.h>
27
28
#include <InetLayer/InetLayer.h>
29
30
namespace nl {
31
namespace Inet {
32
33
void EndPointBasis::InitEndPointBasis(InetLayer& aInetLayer, void* aAppState)
34
0
{
35
0
    InitInetLayerBasis(aInetLayer, aAppState);
36
37
#if WEAVE_SYSTEM_CONFIG_USE_LWIP
38
    mLwIPEndPointType = kLwIPEndPointType_Unknown;
39
#endif // WEAVE_SYSTEM_CONFIG_USE_LWIP
40
41
0
#if WEAVE_SYSTEM_CONFIG_USE_SOCKETS
42
0
    mSocket = INET_INVALID_SOCKET_FD;
43
0
    mPendingIO.Clear();
44
0
#endif // WEAVE_SYSTEM_CONFIG_USE_SOCKETS
45
0
}
46
47
} // namespace Inet
48
} // namespace nl