Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
520 B

/*
* Copyright (c) 2019, 2020, 202§, Erich Styger
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef UDP_SERVER_H_
#define UDP_SERVER_H_
#ifdef __cplusplus
extern "C" {
#endif
#define UDP_SERVER_PORT (1818) /*!< default UDP server port */
/*! \brief start the UDP server */
void UDP_Server_Start(void);
/*! \brief stop the UDP server */
void UDP_Server_Stop(void);
/*! \brief Module initialization */
void UDP_Server_Init(void);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* UDP_SERVER_H_ */