81 lines
2.0 KiB
C
81 lines
2.0 KiB
C
/*
|
|
* coap_internal.h -- Structures, Enums & Functions that are not exposed to
|
|
* application programming
|
|
*
|
|
* Copyright (C) 2019-2022 Jon Shallow <supjps-libcoap@jpshallow.com>
|
|
*
|
|
* 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 <assert.h>
|
|
#endif
|
|
|
|
/* By default without either configured, these need to be set */
|
|
#ifndef COAP_SERVER_SUPPORT
|
|
#ifndef COAP_CLIENT_SUPPORT
|
|
#define COAP_SERVER_SUPPORT 1
|
|
#define COAP_CLIENT_SUPPORT 1
|
|
#endif /* COAP_CLIENT_SUPPORT */
|
|
#endif /* COAP_SERVER_SUPPORT */
|
|
|
|
#if ! COAP_SERVER_SUPPORT
|
|
#ifndef WITHOUT_ASYNC
|
|
/* ASYNC is only there for Server code */
|
|
#define WITHOUT_ASYNC
|
|
#endif /* WITHOUT_ASYNC */
|
|
#endif /* COAP_SERVER_SUPPORT */
|
|
|
|
#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_ */
|