66 lines
1.6 KiB
Plaintext
66 lines
1.6 KiB
Plaintext
/*
|
|
* coap.h -- main header file for CoAP stack of libcoap
|
|
*
|
|
* Copyright (C) 2010-2012,2015-2022 Olaf Bergmann <bergmann@tzi.org>
|
|
* 2015 Carsten Schoenert <c.schoenert@t-online.de>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* This file is part of the CoAP library libcoap. Please see README for terms
|
|
* of use.
|
|
*/
|
|
|
|
#ifndef COAP_H_
|
|
#define COAP_H_
|
|
|
|
/* Define the address where bug reports for libcoap should be sent. */
|
|
#define LIBCOAP_PACKAGE_BUGREPORT "libcoap-developers@lists.sourceforge.net"
|
|
|
|
/* Define the full name of libcoap. */
|
|
#define LIBCOAP_PACKAGE_NAME "libcoap"
|
|
|
|
/* Define the full name and version of libcoap. */
|
|
#define LIBCOAP_PACKAGE_STRING "libcoap 4.3.1"
|
|
|
|
/* Define the home page for libcoap. */
|
|
#define LIBCOAP_PACKAGE_URL "https://libcoap.net/"
|
|
|
|
/* Define the version of libcoap this file belongs to. */
|
|
#define LIBCOAP_PACKAGE_VERSION "4.3.1"
|
|
|
|
/* Define the numeric version identifier for libcoap */
|
|
#define LIBCOAP_VERSION (4003001U)
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "coap3/libcoap.h"
|
|
|
|
#include "coap3/coap_forward_decls.h"
|
|
#include "coap3/block.h"
|
|
#include "coap3/coap_address.h"
|
|
#include "coap3/coap_async.h"
|
|
#include "coap3/coap_cache.h"
|
|
#include "coap3/coap_debug.h"
|
|
#include "coap3/coap_dtls.h"
|
|
#include "coap3/coap_event.h"
|
|
#include "coap3/coap_io.h"
|
|
#include "coap3/coap_option.h"
|
|
#include "coap3/coap_prng.h"
|
|
#include "coap3/coap_subscribe.h"
|
|
#include "coap3/coap_time.h"
|
|
#include "coap3/encode.h"
|
|
#include "coap3/mem.h"
|
|
#include "coap3/net.h"
|
|
#include "coap3/pdu.h"
|
|
#include "coap3/resource.h"
|
|
#include "coap3/str.h"
|
|
#include "coap3/uri.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* COAP_H_ */
|