mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
14 lines
206 B
C
14 lines
206 B
C
#ifndef _UDPAPPS_H_
|
|
#define _UDPAPPS_H_
|
|
|
|
#include "dhcp.h"
|
|
#include "syslog.h"
|
|
|
|
void udp_callbacks(void);
|
|
|
|
#ifndef UIP_UDP_APPCALL
|
|
#define UIP_UDP_APPCALL udp_callbacks
|
|
#endif /* UIP_UDP_APPCALL */
|
|
|
|
#endif
|