mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ed3d440428
Remove no longer needed code from coap_server/coap_client. Add in multicast support for coap_server/coap_client. Update libcoap logging to use esp-idf logging Signed-off-by: Harshit Malpani <harshit.malpani@espressif.com>
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/* Modify head file implementation for ESP32 platform.
|
|
*
|
|
* Uses libcoap software implementation for failover when concurrent
|
|
* define operations are in use.
|
|
*
|
|
* 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>
|
|
*
|
|
* Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
*
|
|
* This file is part of the CoAP library libcoap. Please see README for terms
|
|
* of use.
|
|
*/
|
|
|
|
#ifndef _COAP_H_
|
|
#define _COAP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "coap3/libcoap.h"
|
|
|
|
#include "coap3/coap_forward_decls.h"
|
|
#include "coap3/address.h"
|
|
#include "coap3/async.h"
|
|
#include "coap3/block.h"
|
|
#include "coap3/coap_cache.h"
|
|
#include "coap3/coap_dtls.h"
|
|
#include "coap3/coap_event.h"
|
|
#include "coap3/coap_io.h"
|
|
#include "coap3/coap_time.h"
|
|
#include "coap3/coap_debug.h"
|
|
#include "coap3/encode.h"
|
|
#include "coap3/mem.h"
|
|
#include "coap3/net.h"
|
|
#include "coap3/option.h"
|
|
#include "coap3/pdu.h"
|
|
#include "coap3/coap_prng.h"
|
|
#include "coap3/resource.h"
|
|
#include "coap3/str.h"
|
|
#include "coap3/subscribe.h"
|
|
#include "coap3/uri.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _COAP_H_ */
|