Searched refs:sntp_pcb (Results 1 – 1 of 1) sorted by relevance
166 static struct udp_pcb* sntp_pcb; variable546 if (sntp_pcb == NULL) { in sntp_init()547 sntp_pcb = udp_new_ip_type(IPADDR_TYPE_ANY); in sntp_init()549 if (sntp_pcb != NULL) { in sntp_init()550 udp_recv(sntp_pcb, sntp_recv, NULL); in sntp_init()560 ip_set_option(sntp_pcb, SOF_BROADCAST); in sntp_init()561 udp_bind(sntp_pcb, IP_ANY_TYPE, SNTP_PORT); in sntp_init()574 if (sntp_pcb != NULL) { in sntp_stop()576 udp_remove(sntp_pcb); in sntp_stop()577 sntp_pcb = NULL; in sntp_stop()[all …]
Completed in 3 milliseconds