Imported Upstream version 0.9.1
[platform/upstream/iotivity.git] / service / notification-manager / NotificationManager / include / hosting.h
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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 #ifndef _HOSTING_H_
22 #define _HOSTING_H_
23
24 // Standard API
25 #include <stdio.h>
26 #include <string.h>
27 #include <stdlib.h>
28
29 // Iotivity Base CAPI
30 #include "ocstack.h"
31 #include "logger.h"
32
33 //#define OC_TRANSPORT OC_ALL
34 #define OC_TRANSPORT OC_IPV4
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif // __cplusplus
39
40 #define HOSTING_TAG  PCF("Hosting")
41
42 /**
43  * Start resource coordinator.
44  * This function will create mirrorResourceList and start to discover coordinatee candidate.
45  *
46  * @return ::OC_STACK_OK upon success, ::OC_STACK_ERROR is returned except the case that OC_STACK_SUCCESS is returned.
47  */
48 OCStackResult OICStartCoordinate();
49
50 /**
51  * Stop resource coordinator.
52  * This function will stop the resource hosting and delete mirrorResourceList used.
53  *
54  * @return ::OC_STACK_OK upon success, ::OC_STACK_ERROR is returned except the case that OC_STACK_SUCCESS is returned.
55  */
56 OCStackResult OICStopCoordinate();
57
58 #ifdef __cplusplus
59 }
60 #endif // __cplusplus
61
62 #endif //_HOSTING_H_