comment udp_listener prototype

This commit is contained in:
yrutschle 2021-02-23 21:19:23 +01:00
parent 49c136691c
commit 68fc10aed0
2 changed files with 6 additions and 2 deletions

View File

@ -158,7 +158,9 @@ static void reap_timeouts(struct known_udp_source* sources, int n_src, fd_set* f
}
/* UDP listener: upon incoming packet, find where it should go */
/* UDP listener: upon incoming packet, find where it should go
* This is run in its own process and never returns.
*/
void udp_listener(struct listen_endpoint* endpoint, int num_endpoints, int active_endpoint)
{
fd_set fds_r, fds_r_tmp;

View File

@ -1,3 +1,5 @@
/* UDP listener: upon incoming packet, find where it should go */
/* UDP listener: upon incoming packet, find where it should go
* This is run in its own process and never returns.
*/
void udp_listener(struct listen_endpoint* endpoint, int num_endpoints, int active_endpoint);