doxygen fixes
This commit is contained in:
parent
d3c1ca217c
commit
0bb0ec6592
13 changed files with 14 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
|
||||
/** MD5 values */
|
||||
enum {
|
||||
MD5_SIZE = 16, /**< Number of bytes in MD5 hash */
|
||||
MD5_STR_SIZE = 2*MD5_SIZE + 1 /**< Number of bytes in MD5 string */
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
|
||||
/** RTP protocol values */
|
||||
enum {
|
||||
RTP_VERSION = 2, /**< Defines the RTP version we support */
|
||||
RTCP_VERSION = 2, /**< Supported RTCP Version */
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
|
||||
/** STUN Protocol values */
|
||||
enum {
|
||||
STUN_PORT = 3478, /**< STUN Port number */
|
||||
STUNS_PORT = 5349, /**< STUNS Port number */
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
* Copyright (C) 2010 Creytiv.com
|
||||
*/
|
||||
|
||||
|
||||
/** TURN Protocol values */
|
||||
enum {
|
||||
TURN_DEFAULT_LIFETIME = 600, /**< Default lifetime is 10 minutes */
|
||||
TURN_MAX_LIFETIME = 3600 /**< Maximum lifetime is 1 hour */
|
||||
|
|
|
@ -44,6 +44,7 @@ enum ice_transp {
|
|||
ICE_TRANSP_UDP
|
||||
};
|
||||
|
||||
/** ICE protocol values */
|
||||
enum {
|
||||
ICE_DEFAULT_Tr = 15, /**< Keepalive interval [s] */
|
||||
ICE_DEFAULT_Ta_RTP = 20, /**< Pacing interval RTP [ms] */
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
#endif
|
||||
|
||||
|
||||
/** Main loop values */
|
||||
enum {
|
||||
MAX_BLOCKING = 100, /**< Maximum time spent in handler in [ms] */
|
||||
#if defined (FD_SETSIZE)
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
|
||||
/** RTCP protocol values */
|
||||
enum {
|
||||
RTCP_HDR_SIZE = 4, /**< Size of common RTCP header */
|
||||
RTCP_SRC_SIZE = 4, /**< Size of Source field */
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <re_dbg.h>
|
||||
|
||||
|
||||
/** RTP protocol values */
|
||||
enum {
|
||||
RTCP_INTERVAL = 5000, /**< Interval in [ms] between sending reports */
|
||||
MAX_MEMBERS = 8,
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
#include "srtp.h"
|
||||
|
||||
|
||||
/** SRTP protocol values */
|
||||
enum {
|
||||
MAX_KEYLEN = 32, /**< Maximum keylength in bytes */
|
||||
};
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include "srtp.h"
|
||||
|
||||
|
||||
/** SRTP protocol values */
|
||||
enum {
|
||||
MAX_STREAMS = 8, /**< Maximum number of SRTP streams */
|
||||
};
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
|
||||
/** STUN Protocol values */
|
||||
enum {
|
||||
STUN_MAGIC_COOKIE = 0x2112a442 /**< Magic Cookie for 3489bis */
|
||||
};
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#define TMR_DEBUG 1 /**< Timer debugging (0 or 1) */
|
||||
#endif
|
||||
|
||||
|
||||
/** Timer values */
|
||||
enum {
|
||||
MAX_BLOCKING = 100 /**< Maximum time spent in handler [ms] */
|
||||
};
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <re_dbg.h>
|
||||
|
||||
|
||||
/** TURN Client protocol values */
|
||||
enum {
|
||||
PERM_HASH_SIZE = 16,
|
||||
CHAN_HASH_SIZE = 16,
|
||||
|
|
Loading…
Add table
Reference in a new issue