1 /* Modify head file implementation for ESP32 platform. 2 * 3 * Uses libcoap software implementation for failover when concurrent 4 * define operations are in use. 5 * 6 * coap.h -- main header file for CoAP stack of libcoap 7 * 8 * Copyright (C) 2010-2012,2015-2016 Olaf Bergmann <bergmann@tzi.org> 9 * 2015 Carsten Schoenert <c.schoenert@t-online.de> 10 * 11 * Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD 12 * 13 * This file is part of the CoAP library libcoap. Please see README for terms 14 * of use. 15 */ 16 17 #ifndef _COAP_H_ 18 #define _COAP_H_ 19 20 #ifdef __cplusplus 21 extern "C" { 22 #endif 23 24 #include "coap3/libcoap.h" 25 26 #include "coap3/coap_forward_decls.h" 27 #include "coap3/address.h" 28 #include "coap3/async.h" 29 #include "coap3/block.h" 30 #include "coap3/coap_cache.h" 31 #include "coap3/coap_dtls.h" 32 #include "coap3/coap_event.h" 33 #include "coap3/coap_io.h" 34 #include "coap3/coap_time.h" 35 #include "coap3/coap_debug.h" 36 #include "coap3/encode.h" 37 #include "coap3/mem.h" 38 #include "coap3/net.h" 39 #include "coap3/option.h" 40 #include "coap3/pdu.h" 41 #include "coap3/coap_prng.h" 42 #include "coap3/resource.h" 43 #include "coap3/str.h" 44 #include "coap3/subscribe.h" 45 #include "coap3/uri.h" 46 47 #ifdef __cplusplus 48 } 49 #endif 50 51 #endif /* _COAP_H_ */ 52