mirror of
https://github.com/dj0abr/SSB_HighSpeed_Modem.git
synced 2024-10-31 15:37:12 -04:00
10 lines
310 B
C
10 lines
310 B
C
|
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;
|