1
0
mirror of https://github.com/dj0abr/SSB_HighSpeed_Modem.git synced 2025-07-07 19:55:17 -04:00

10 lines
310 B
C
Raw Normal View History

2020-11-05 19:11:57 +01:00
void UdpRxInit(int *sock, int port, void (*rxfunc)(uint8_t *, int, struct sockaddr_in*), int *keeprunning);
void sendUDP(char *destIP, int destPort, uint8_t *pdata, int len);
typedef struct {
int *sock;
int port;
void (*rxfunc)(uint8_t *, int, struct sockaddr_in*);
int *keeprunning;
} RXCFG;