[go: up one dir, main page]

Menu

[d0916c]: / coap.h  Maximize  Restore  History

Download this file

28 lines (24 with data), 535 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* coap.h -- main header file for CoAP stack
*
* Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
*
* This file is part of the CoAP library libcoap. Please see
* README for terms of use.
*/
#ifndef _COAP_H_
#define _COAP_H_
#include "config.h"
#include "debug.h"
#include "mem.h"
#include "coap_list.h"
#include "pdu.h"
#include "option.h"
#include "net.h"
#include "encode.h"
#include "str.h"
#include "uri.h"
#include "async.h"
#include "resource.h"
#include "subscribe.h"
#include "block.h"
#endif /* _COAP_H_ */