1/* 2 * server-coap.h -- RIOT client example 3 * 4 * Copyright (C) 2023 Jon Shallow <supjps-libcoap@jpshallow.com> 5 * 6 * SPDX-License-Identifier: BSD-2-Clause 7 * 8 * This file is part of the CoAP library libcoap. Please see README for terms 9 * of use. 10 */ 11 12#ifndef SERVER_COAP_H 13#define SERVER_COAP_H 14 15#ifdef __cplusplus 16extern "C" { 17#endif 18 19#include "coap_config.h" 20#include <coap3/coap.h> 21 22/* Start up the CoAP Server */ 23void server_coap_init(int argc, char **argv); 24 25#ifdef __cplusplus 26} 27#endif 28 29#endif /* SERVER_COAP_H */ 30