iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / csdk / connectivity / lib / libcoap-4.1.1 / coap.h
1 /* coap.h -- main header file for CoAP stack
2  *
3  * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
4  *
5  * This file is part of the CoAP library libcoap. Please see
6  * README for terms of use. 
7  */
8
9 #ifndef _COAP_H_
10 #define _COAP_H_
11
12 #ifdef __cplusplus
13 extern "C"
14 {
15 #endif
16
17 #include "config.h"
18 #include "debug.h"
19 #include "mem.h"
20 #include "coap_list.h"
21 #include "pdu.h"
22 #include "option.h"
23 #include "net.h"
24 #include "encode.h"
25 #include "str.h"
26 #include "uri.h"
27 #include "async.h"
28 #include "resource.h"
29 #include "subscribe.h"
30 #include "block.h"
31
32 #ifdef __cplusplus
33 }
34 #endif
35
36 #endif /* _COAP_H_ */