File tree 13 files changed +14
-1
lines changed
13 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
8
+ /** MD5 values */
8
9
enum {
9
10
MD5_SIZE = 16 , /**< Number of bytes in MD5 hash */
10
11
MD5_STR_SIZE = 2 * MD5_SIZE + 1 /**< Number of bytes in MD5 string */
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
8
+ /** RTP protocol values */
8
9
enum {
9
10
RTP_VERSION = 2 , /**< Defines the RTP version we support */
10
11
RTCP_VERSION = 2 , /**< Supported RTCP Version */
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
8
+ /** STUN Protocol values */
8
9
enum {
9
10
STUN_PORT = 3478 , /**< STUN Port number */
10
11
STUNS_PORT = 5349 , /**< STUNS Port number */
Original file line number Diff line number Diff line change 4
4
* Copyright (C) 2010 Creytiv.com
5
5
*/
6
6
7
+
8
+ /** TURN Protocol values */
7
9
enum {
8
10
TURN_DEFAULT_LIFETIME = 600 , /**< Default lifetime is 10 minutes */
9
11
TURN_MAX_LIFETIME = 3600 /**< Maximum lifetime is 1 hour */
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ enum ice_transp {
44
44
ICE_TRANSP_UDP
45
45
};
46
46
47
+ /** ICE protocol values */
47
48
enum {
48
49
ICE_DEFAULT_Tr = 15 , /**< Keepalive interval [s] */
49
50
ICE_DEFAULT_Ta_RTP = 20 , /**< Pacing interval RTP [ms] */
Original file line number Diff line number Diff line change 68
68
#endif
69
69
70
70
71
+ /** Main loop values */
71
72
enum {
72
73
MAX_BLOCKING = 100 , /**< Maximum time spent in handler in [ms] */
73
74
#if defined (FD_SETSIZE )
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
8
+ /** RTCP protocol values */
8
9
enum {
9
10
RTCP_HDR_SIZE = 4 , /**< Size of common RTCP header */
10
11
RTCP_SRC_SIZE = 4 , /**< Size of Source field */
Original file line number Diff line number Diff line change 29
29
#include <re_dbg.h>
30
30
31
31
32
+ /** RTP protocol values */
32
33
enum {
33
34
RTCP_INTERVAL = 5000 , /**< Interval in [ms] between sending reports */
34
35
MAX_MEMBERS = 8 ,
Original file line number Diff line number Diff line change 18
18
#include "srtp.h"
19
19
20
20
21
+ /** SRTP protocol values */
21
22
enum {
22
23
MAX_KEYLEN = 32 , /**< Maximum keylength in bytes */
23
24
};
Original file line number Diff line number Diff line change 11
11
#include "srtp.h"
12
12
13
13
14
+ /** SRTP protocol values */
14
15
enum {
15
16
MAX_STREAMS = 8 , /**< Maximum number of SRTP streams */
16
17
};
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
8
+ /** STUN Protocol values */
8
9
enum {
9
10
STUN_MAGIC_COOKIE = 0x2112a442 /**< Magic Cookie for 3489bis */
10
11
};
Original file line number Diff line number Diff line change 32
32
#define TMR_DEBUG 1 /**< Timer debugging (0 or 1) */
33
33
#endif
34
34
35
-
35
+ /** Timer values */
36
36
enum {
37
37
MAX_BLOCKING = 100 /**< Maximum time spent in handler [ms] */
38
38
};
Original file line number Diff line number Diff line change 24
24
#include <re_dbg.h>
25
25
26
26
27
+ /** TURN Client protocol values */
27
28
enum {
28
29
PERM_HASH_SIZE = 16 ,
29
30
CHAN_HASH_SIZE = 16 ,
You can’t perform that action at this time.
0 commit comments