Skip to content

Commit 0bb0ec6

Browse files
author
Richard Aas
committed
doxygen fixes
1 parent d3c1ca2 commit 0bb0ec6

File tree

13 files changed

+14
-1
lines changed

13 files changed

+14
-1
lines changed

include/re_md5.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77

8+
/** MD5 values */
89
enum {
910
MD5_SIZE = 16, /**< Number of bytes in MD5 hash */
1011
MD5_STR_SIZE = 2*MD5_SIZE + 1 /**< Number of bytes in MD5 string */

include/re_rtp.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77

8+
/** RTP protocol values */
89
enum {
910
RTP_VERSION = 2, /**< Defines the RTP version we support */
1011
RTCP_VERSION = 2, /**< Supported RTCP Version */

include/re_stun.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77

8+
/** STUN Protocol values */
89
enum {
910
STUN_PORT = 3478, /**< STUN Port number */
1011
STUNS_PORT = 5349, /**< STUNS Port number */

include/re_turn.h

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* Copyright (C) 2010 Creytiv.com
55
*/
66

7+
8+
/** TURN Protocol values */
79
enum {
810
TURN_DEFAULT_LIFETIME = 600, /**< Default lifetime is 10 minutes */
911
TURN_MAX_LIFETIME = 3600 /**< Maximum lifetime is 1 hour */

src/ice/ice.h

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ enum ice_transp {
4444
ICE_TRANSP_UDP
4545
};
4646

47+
/** ICE protocol values */
4748
enum {
4849
ICE_DEFAULT_Tr = 15, /**< Keepalive interval [s] */
4950
ICE_DEFAULT_Ta_RTP = 20, /**< Pacing interval RTP [ms] */

src/main/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
#endif
6969

7070

71+
/** Main loop values */
7172
enum {
7273
MAX_BLOCKING = 100, /**< Maximum time spent in handler in [ms] */
7374
#if defined (FD_SETSIZE)

src/rtp/rtcp.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77

8+
/** RTCP protocol values */
89
enum {
910
RTCP_HDR_SIZE = 4, /**< Size of common RTCP header */
1011
RTCP_SRC_SIZE = 4, /**< Size of Source field */

src/rtp/sess.c

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include <re_dbg.h>
3030

3131

32+
/** RTP protocol values */
3233
enum {
3334
RTCP_INTERVAL = 5000, /**< Interval in [ms] between sending reports */
3435
MAX_MEMBERS = 8,

src/srtp/srtp.c

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include "srtp.h"
1919

2020

21+
/** SRTP protocol values */
2122
enum {
2223
MAX_KEYLEN = 32, /**< Maximum keylength in bytes */
2324
};

src/srtp/stream.c

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "srtp.h"
1212

1313

14+
/** SRTP protocol values */
1415
enum {
1516
MAX_STREAMS = 8, /**< Maximum number of SRTP streams */
1617
};

src/stun/stun.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77

8+
/** STUN Protocol values */
89
enum {
910
STUN_MAGIC_COOKIE = 0x2112a442 /**< Magic Cookie for 3489bis */
1011
};

src/tmr/tmr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#define TMR_DEBUG 1 /**< Timer debugging (0 or 1) */
3333
#endif
3434

35-
35+
/** Timer values */
3636
enum {
3737
MAX_BLOCKING = 100 /**< Maximum time spent in handler [ms] */
3838
};

src/turn/turnc.c

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <re_dbg.h>
2525

2626

27+
/** TURN Client protocol values */
2728
enum {
2829
PERM_HASH_SIZE = 16,
2930
CHAN_HASH_SIZE = 16,

0 commit comments

Comments
 (0)