2018-11-26 23:22:11 +01:00
|
|
|
/* Modify head file implementation for ESP32 platform.
|
|
|
|
*
|
|
|
|
* Uses libcoap software implementation for failover when concurrent
|
|
|
|
* define operations are in use.
|
|
|
|
*
|
2017-01-16 15:03:13 +01:00
|
|
|
* coap.h -- main header file for CoAP stack of libcoap
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2012,2015-2016 Olaf Bergmann <bergmann@tzi.org>
|
|
|
|
* 2015 Carsten Schoenert <c.schoenert@t-online.de>
|
|
|
|
*
|
2018-11-26 23:22:11 +01:00
|
|
|
* Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
*
|
2017-01-16 15:03:13 +01:00
|
|
|
* This file is part of the CoAP library libcoap. Please see README for terms
|
|
|
|
* of use.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _COAP_H_
|
|
|
|
#define _COAP_H_
|
|
|
|
|
|
|
|
#include "libcoap.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "address.h"
|
|
|
|
#include "async.h"
|
|
|
|
#include "bits.h"
|
|
|
|
#include "block.h"
|
|
|
|
#include "coap_io.h"
|
|
|
|
#include "coap_time.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "encode.h"
|
|
|
|
#include "mem.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "option.h"
|
|
|
|
#include "pdu.h"
|
|
|
|
#include "prng.h"
|
|
|
|
#include "resource.h"
|
|
|
|
#include "str.h"
|
|
|
|
#include "subscribe.h"
|
|
|
|
#include "uri.h"
|
|
|
|
#include "uthash.h"
|
|
|
|
#include "utlist.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _COAP_H_ */
|