#ifndef COAP_CONFIG_H_ #define COAP_CONFIG_H_ /* Define to 1 if libcoap supports client mode code. */ #define COAP_CLIENT_SUPPORT 1 /* Define to 1 if libcoap supports server mode code. */ #define COAP_SERVER_SUPPORT 1 /* Define to 1 if the system has small stack size. */ #define COAP_CONSTRAINED_STACK 1 /* Define to 1 to build without TCP support. */ #define COAP_DISABLE_TCP 1 /* Define to 1 to build support for IPv4 packets. */ /* #undef COAP_IPV4_SUPPORT 1 */ /* Define to 1 to build support for IPv6 packets. */ #define COAP_IPV6_SUPPORT 1 /* Define to 1 to build support for Unix socket packets. */ /* #undef COAP_AF_UNIX_SUPPORT 1 */ /* Define to 1 to build with support for async separate responses. */ #define COAP_ASYNC_SUPPORT 1 /* Define to 1 to build support for persisting observes. */ /* #undef COAP_WITH_OBSERVE_PERSIST 1 */ /* Define to 1 to build with WebSockets support. */ /* #undef COAP_WS_SUPPORT 1 */ /* Define to 1 to build with Q-Block (RFC9177) support. */ /* #undef COAP_Q_BLOCK_SUPPORT 1 */ /* Define to 1 if you have the header file. */ #define HAVE_ASSERT_H 1 /* Define to 1 if you have the header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the header file. */ #define HAVE_ERRNO_H 1 /* Define to 1 if you have the header file. */ #define HAVE_LIMITS_H 1 /* Define to 1 if you have the `memset' function. */ #define HAVE_MEMSET 1 /* Define to 1 if you have the header file. */ #define HAVE_STDDEF_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STDINT_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define to 1 if you have the `strcasecmp' function. */ #define HAVE_STRCASECMP 1 /* Define to 1 if you have the header file. */ #define HAVE_STRINGS_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STRING_H 1 /* Define to 1 if you have the `strnlen' function. */ #define HAVE_STRNLEN 1 /* Define to 1 if you have the `strrchr' function. */ #define HAVE_STRRCHR 1 /* Define to 1 if you have the `snprintf' function. */ #define HAVE_SNPRINTF 1 /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "libcoap-developers@lists.sourceforge.net" /* Define to the full name of this package. */ #define PACKAGE_NAME "libcoap" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "libcoap 4.3.4" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "libcoap" /* Define to the home page for this package. */ #define PACKAGE_URL "https://libcoap.net/" /* Define to the version of this package. */ #define PACKAGE_VERSION "4.3.4" #define WITH_CONTIKI 1 #define HASH_NONFATAL_OOM 1 #ifndef HEAPMEM_CONF_ARENA_SIZE #define HEAPMEM_CONF_ARENA_SIZE 6144 #endif #endif /* COAP_CONFIG_H_ */