11 lines
174 B
C
11 lines
174 B
C
#ifndef UDPPROTO_H
|
|
#define UDPPROTO_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int udpproto_init(uint16_t port);
|
|
int udpproto_process(void);
|
|
void udpproto_shutdown(void);
|
|
|
|
#endif // UDPPROTO_H
|