comparison rtp-mgr/struct.h @ 2:247f4bbde24c

rtp-mgr: daemon ported over
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 27 May 2024 19:42:19 +0000
parents
children
comparison
equal deleted inserted replaced
1:560a3765ab30 2:247f4bbde24c
1 /*
2 * This header file defines internal data structures for themwi-rtp-mgr.
3 */
4
5 struct bind_range_cfg {
6 struct in_addr bind_ip;
7 unsigned port_range_start;
8 unsigned port_range_end;
9 unsigned port_next;
10 unsigned port_tries;
11 };
12
13 struct rtp_one_end {
14 int rtp_fd;
15 int rtcp_fd;
16 struct sockaddr_in bound_addr;
17 };