1 /* 2 * server-coap.h -- LwIP example 3 * 4 * Copyright (C) 2013-2016 Christian Amsüss <chrysn@fsfe.org> 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 #include "coap_config.h" 13 #include <coap3/coap.h> 14 15 /* Start up the CoAP Server */ 16 void server_coap_init(coap_lwip_input_wait_handler_t input_wait, void *input_arg, 17 int argc, char **argv); 18 19 /* Close down CoAP activity */ 20 21 void server_coap_finished(void); 22 23 /* call this when you think that resources could be dirty */ 24 void server_coap_poll(void); 25