-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrtpp_defines.h
141 lines (119 loc) · 4.07 KB
/
rtpp_defines.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
* Copyright (c) 2004-2006 Maxim Sobolev <[email protected]>
* Copyright (c) 2006-2007 Sippy Software, Inc., http://www.sippysoft.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: rtpp_defines.h,v 1.24.2.1 2009/10/06 09:51:28 sobomax Exp $
*
*/
#ifndef _RTPP_DEFINES_H_
#define _RTPP_DEFINES_H_
#include "config.h"
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <poll.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include "rtpp_log.h"
/*
* Version of the command protocol, bump only when backward-incompatible
* change is introduced
*/
#define CPROTOVER 20040107
#define PORT_MIN 35000
#define PORT_MAX 65000
#define TIMETICK 1.0 /* in seconds */
#define SESSION_TIMEOUT 60 /* in ticks */
#define TOS 0xb8
#define LBR_THRS 128 /* low-bitrate threshold */
#define CPORT "22222"
#define POLL_LIMIT 200 /* maximum number of poll(2) calls per second */
#define UPDATE_WINDOW 10.0 /* in seconds */
/* Dummy service, getaddrinfo needs it */
#define SERVICE "34999"
#define CMD_SOCK "/var/run/rtpproxy.sock"
#define PID_FILE "/var/run/rtpproxy.pid"
/*
* TTL counters are used to detect the absence of audio packets
* in either direction. When the counter reaches 0, the call timeout
* occurs.
*/
typedef enum {
TTL_UNIFIED = 0, /* all TTL counters must reach 0 */
TTL_INDEPENDENT = 1 /* any TTL counter reaches 0 */
} rtpp_ttl_mode;
struct rtpp_timeout_handler {
char *socket_name;
int fd;
int connected;
char notify_buf[64];
};
struct cfg {
int nodaemon;
int dmode;
int bmode; /* Bridge mode */
int umode; /* UDP control mode */
int port_min; /* Lowest UDP port for RTP */
int port_max; /* Highest UDP port number for RTP */
struct rtpp_session **sessions;
struct rtpp_session **rtp_servers;
struct pollfd *pfds;
int nsessions;
int rtp_nsessions;
unsigned long long sessions_created;
int sessions_active;
int max_ttl;
/*
* The first address is for external interface, the second one - for
* internal one. Second can be NULL, in this case there is no bridge
* mode enabled.
*/
struct sockaddr *bindaddr[2]; /* RTP socket(s) addresses */
int tos;
const char *rdir;
const char *sdir;
int record_pcap; /* Record in the PCAP format? */
int record_all; /* Record everything */
int rrtcp; /* Whether or not to relay RTCP? */
rtpp_log_t glog;
struct rlimit nofile_limit;
int nofile_limit_warned;
uint8_t rand_table[256];
struct rtpp_session *hash_table[256];
char *run_uname;
char *run_gname;
int no_check;
rtpp_ttl_mode ttl_mode;
struct rtpp_timeout_handler timeout_handler;
uid_t run_uid;
gid_t run_gid;
uint16_t port_table[65536];
int port_table_len;
int port_table_idx;
int log_level;
int log_facility;
};
#endif