3e2828c953292abb1c40a443d7db6f73e814c7fb
[platform/upstream/iotivity.git] / csdk / 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 #endif
15
16 #include "config.h"
17 #include "debug.h"
18 #include "mem.h"
19 #include "coap_list.h"
20 #include "pdu.h"
21 #include "option.h"
22 #include "net.h"
23 #include "encode.h"
24 #include "str.h"
25 #include "uri.h"
26 #include "async.h"
27 #include "resource.h"
28 #include "subscribe.h"
29 #include "block.h"
30
31 #ifdef __cplusplus
32 }
33 #endif
34
35 #endif /* _COAP_H_ */