Fix multicast compile on mingw

https://github.com/Hamlib/Hamlib/issues/695
pull/1289/head
Mike Black W9MDB 2023-05-07 07:21:15 -05:00
rodzic e3c2a8d6ca
commit 1b3cee99fb
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -2475,9 +2475,11 @@ struct multicast_s
int sock;
int seqnumber;
int runflag; // = 0;
struct ip_mreq mreq; // = {0};
pthread_t threadid;
#ifdef HAVE_ARPA_INET_H
struct ip_mreq mreq; // = {0};
struct sockaddr_in dest_addr; // = {0};
#endif
};
/**