Remove multicast rx until we get it working

https://github.com/Hamlib/Hamlib/issues/695
pull/1389/head
Mike Black W9MDB 2023-09-16 10:00:07 -05:00
rodzic e9ef4c1a81
commit 57c8819ce0
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -326,12 +326,16 @@ void *multicast_thread_rx(void *vrig)
rig->state.port_type = RIG_PORT_UDP_NETWORK;
strcpy(port.pathname, "127.0.0.1:4532");
//rig_debug(RIG_DEBUG_TRACE, "%s: started\n", __func__);
#if 0
network_open(&port, 4532);
#endif
while (rig->state.multicast->runflag && ret >= 0)
{
#if 0
ret = read_string(&rig->state.rigport, (unsigned char *) buf, sizeof(buf), "\n", 1,
0, 1);
#endif
//rig_debug(RIG_DEBUG_VERBOSE, "%s: read %s\n", __func__, buf);
hl_usleep(10 * 1000);