Use latest version of conf.d/templates submodule.
[apps/agl-service-unicens.git] / ucs2-lib / inc / ucs_rm_pv.h
1 /*------------------------------------------------------------------------------------------------*/
2 /* UNICENS V2.1.0-3491                                                                            */
3 /* Copyright (c) 2017 Microchip Technology Germany II GmbH & Co. KG.                              */
4 /*                                                                                                */
5 /* This program is free software: you can redistribute it and/or modify                           */
6 /* it under the terms of the GNU General Public License as published by                           */
7 /* the Free Software Foundation, either version 2 of the License, or                              */
8 /* (at your option) any later version.                                                            */
9 /*                                                                                                */
10 /* This program is distributed in the hope that it will be useful,                                */
11 /* but WITHOUT ANY WARRANTY; without even the implied warranty of                                 */
12 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                  */
13 /* GNU General Public License for more details.                                                   */
14 /*                                                                                                */
15 /* You should have received a copy of the GNU General Public License                              */
16 /* along with this program.  If not, see <http://www.gnu.org/licenses/>.                          */
17 /*                                                                                                */
18 /* You may also obtain this software under a propriety license from Microchip.                    */
19 /* Please contact Microchip for further information.                                              */
20 /*------------------------------------------------------------------------------------------------*/
21
22 /*!
23  * \file
24  * \brief Private header file of the Routing Management.
25  * \cond UCS_INTERNAL_DOC
26  * \addtogroup G_RTM
27  * @{
28  */
29
30 #ifndef UCS_RM_PV_H
31 #define UCS_RM_PV_H
32
33 /*------------------------------------------------------------------------------------------------*/
34 /* Includes                                                                                       */
35 /*------------------------------------------------------------------------------------------------*/
36 #include "ucs_rtm_pv.h"
37
38 #ifdef __cplusplus
39 extern "C"
40 {
41 #endif
42
43 /*------------------------------------------------------------------------------------------------*/
44 /* Structures                                                                                     */
45 /*------------------------------------------------------------------------------------------------*/
46 /*! \brief Internal configuration structure of a Connection Node. */
47 typedef struct Ucs_Rm_NodeInt_
48 {
49     uint8_t available;      /*!< \brief Availability flag */
50     uint8_t mgr_joined;     /*!< \brief Indicates whether the node was made available by manager */
51
52 } Ucs_Rm_NodeInt_t;
53
54
55 #ifdef __cplusplus
56 }   /* extern "C" */
57 #endif
58
59 #endif  /* #ifndef UCS_RM_PV_H */
60
61 /*!
62  * @}
63  * \endcond
64  */
65
66 /*------------------------------------------------------------------------------------------------*/
67 /* End of file                                                                                    */
68 /*------------------------------------------------------------------------------------------------*/
69