a84cbfb87351389ff4ca631cea3236ee56bac668
[platform/core/connectivity/zigbee-manager.git] / common / include / zigbee_service_type.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Contact: Suresh Kumar N (suresh.n@samsung.com)
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 #ifndef __ZIGBEE_SERVICE_TYPE_H__
20 #define __ZIGBEE_SERVICE_TYPE_H__
21
22 /**
23  * @brief Definition for size of EUI64 (an IEEE address) in bytes (8).
24  * @since_tizen 3.0
25  */
26 #define ZIGBEE_EUI64_SIZE 8
27
28 /**
29  * @brief Definition for service coex start structure.
30  * @since_tizen 3.0
31  */
32 typedef struct {
33         char channel; /**< Channel */
34 } ZigbeeServiceCoexStart_t;
35
36 /**
37  * @brief Definition for service permit join structure.
38  * @since_tizen 3.0
39  */
40 typedef struct {
41         char permit_join; /* 1 - Allow, 0 - Disallow */
42         int duration; /**< Duration */
43 } ZigbeeServicePermitJoin_t;
44
45 /**
46  * @brief Definition for service leave request structure.
47  * @since_tizen 3.0
48  */
49 typedef struct {
50         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
51         char remove_child; /* Remove child */
52         char rejoin; /**< Re-join */
53 } ZigbeeServiceLeaveRequest_t;
54
55 /**
56  * @brief Definition for service get endpoint list structure.
57  * @since_tizen 3.0
58  */
59 typedef struct {
60         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
61 } ZigbeeServiceGetEndpointList_t;
62
63 /**
64  * @brief Definition for service get cluster list structure.
65  * @since_tizen 3.0
66  */
67 typedef struct {
68         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
69         char endpoint; /**< Endpoint */
70 } ZigbeeServiceGetClusterList_t;
71
72 /**
73  * @brief Definition for service get node type structure.
74  * @since_tizen 3.0
75  */
76 typedef struct {
77         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
78 } ZigbeeServiceGetNodeType_t;
79
80 #endif /* __ZIGBEE_SERVICE_TYPE_H__ */