/* * server-coap.h -- LwIP example * * Copyright (C) 2013-2016 Christian Amsüss * * SPDX-License-Identifier: BSD-2-Clause * * This file is part of the CoAP library libcoap. Please see README for terms * of use. */ #include "coap_config.h" #include /* Start up the CoAP Server */ void server_coap_init(coap_lwip_input_wait_handler_t input_wait, void *input_arg, int argc, char **argv); /* Close down CoAP activity */ void server_coap_finished(void); /* call this when you think that resources could be dirty */ void server_coap_poll(void);