/* * coap_internal.h -- Structures, Enums & Functions that are not exposed to * application programming * * Copyright (C) 2019-2021 Jon Shallow * * SPDX-License-Identifier: BSD-2-Clause * * This file is part of the CoAP library libcoap. Please see README for terms * of use. */ /* * All libcoap library files should include this file which then pulls in all * of the other appropriate header files. * * Note: This file should never be included in application code (with the * possible exception of internal test suites). */ /** * @file coap_internal.h * @brief Pulls together all the internal only header files */ #ifndef COAP_INTERNAL_H_ #define COAP_INTERNAL_H_ #include "coap_config.h" /* * Correctly set up assert() based on NDEBUG for libcoap */ #if defined(HAVE_ASSERT_H) && !defined(assert) # include #endif #include "coap3/coap.h" /* * Include all the header files that are for internal use only. */ /* Not defined in coap.h - internal usage .h files */ #include "utlist.h" #include "uthash.h" #include "coap_hashkey.h" #include "coap_mutex.h" /* Specifically defined internal .h files */ #include "coap_asn1_internal.h" #include "coap_async_internal.h" #include "coap_block_internal.h" #include "coap_cache_internal.h" #include "coap_dtls_internal.h" #include "coap_io_internal.h" #include "coap_net_internal.h" #include "coap_pdu_internal.h" #include "coap_session_internal.h" #include "coap_resource_internal.h" #include "coap_session_internal.h" #include "coap_subscribe_internal.h" #include "coap_tcp_internal.h" #endif /* COAP_INTERNAL_H_ */