1 /* 2 * coap.h -- main header file for CoAP stack of libcoap 3 * 4 * Copyright (C) 2010-2012,2015-2021 Olaf Bergmann <bergmann@tzi.org> 5 * 2015 Carsten Schoenert <c.schoenert@t-online.de> 6 * 7 * SPDX-License-Identifier: BSD-2-Clause 8 * 9 * This file is part of the CoAP library libcoap. Please see README for terms 10 * of use. 11 */ 12 13 #ifndef COAP_H_ 14 #define COAP_H_ 15 16 /* Define the address where bug reports for libcoap should be sent. */ 17 #define LIBCOAP_PACKAGE_BUGREPORT "libcoap-developers@lists.sourceforge.net" 18 19 /* Define the full name of libcoap. */ 20 #define LIBCOAP_PACKAGE_NAME "libcoap" 21 22 /* Define the full name and version of libcoap. */ 23 #define LIBCOAP_PACKAGE_STRING "libcoap 4.3.0" 24 25 /* Define the home page for libcoap. */ 26 #define LIBCOAP_PACKAGE_URL "https://libcoap.net/" 27 28 /* Define the version of libcoap this file belongs to. */ 29 #define LIBCOAP_PACKAGE_VERSION "4.3.0" 30 31 /* Define the numeric version identifier for libcoap */ 32 #define LIBCOAP_VERSION (4003000U) 33 34 #ifdef __cplusplus 35 extern "C" { 36 #endif 37 38 #include "coap3/libcoap.h" 39 #include "securec.h" 40 41 #include "coap3/coap_forward_decls.h" 42 #include "coap3/address.h" 43 #include "coap3/async.h" 44 #include "coap3/block.h" 45 #include "coap3/coap_cache.h" 46 #include "coap3/coap_debug.h" 47 #include "coap3/coap_dtls.h" 48 #include "coap3/coap_event.h" 49 #include "coap3/coap_io.h" 50 #include "coap3/coap_io_internal.h" 51 #include "coap3/coap_prng.h" 52 #include "coap3/coap_time.h" 53 #include "coap3/encode.h" 54 #include "coap3/mem.h" 55 #include "coap3/net.h" 56 #include "coap3/option.h" 57 #include "coap3/pdu.h" 58 #include "coap3/resource.h" 59 #include "coap3/str.h" 60 #include "coap3/subscribe.h" 61 #include "coap3/uri.h" 62 63 #ifdef __cplusplus 64 } 65 #endif 66 67 #endif /* COAP_H_ */ 68