[svn-commits] file: branch file/rtp_engine r131075 - /team/file/rtp_engine/include/asterisk/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jul 15 14:00:19 CDT 2008


Author: file
Date: Tue Jul 15 14:00:18 2008
New Revision: 131075

URL: http://svn.digium.com/view/asterisk?view=rev&rev=131075
Log:
Merci Russell.

Modified:
    team/file/rtp_engine/include/asterisk/rtp_engine.h

Modified: team/file/rtp_engine/include/asterisk/rtp_engine.h
URL: http://svn.digium.com/view/asterisk/team/file/rtp_engine/include/asterisk/rtp_engine.h?view=diff&rev=131075&r1=131074&r2=131075
==============================================================================
--- team/file/rtp_engine/include/asterisk/rtp_engine.h (original)
+++ team/file/rtp_engine/include/asterisk/rtp_engine.h Tue Jul 15 14:00:18 2008
@@ -71,7 +71,7 @@
 struct ast_rtp_instance;
 struct ast_rtp_glue;
 
-/*!< RTP Properties that can be set on an RTP instance */
+/*! RTP Properties that can be set on an RTP instance */
 enum ast_rtp_property {
 	/*! Enable symmetric RTP support */
 	AST_RTP_PROPERTY_NAT = 0,
@@ -87,13 +87,13 @@
 	AST_RTP_PROPERTY_MAX,
 };
 
-/*!< Additional RTP options */
+/*! Additional RTP options */
 enum ast_rtp_options {
 	/*! Remote side is using non-standard G.726 */
 	AST_RTP_OPT_G726_NONSTANDARD = (1 << 0),
 };
 
-/*!< Result codes when RTP glue is queried for information */
+/*! Result codes when RTP glue is queried for information */
 enum ast_rtp_glue_result {
 	/*! No remote or local bridging is permitted */
 	AST_RTP_GLUE_RESULT_FORBID = 0,
@@ -103,7 +103,7 @@
 	AST_RTP_GLUE_RESULT_LOCAL,
 };
 
-/*!< Statistics that can be retrieved from an RTP instance */
+/*! Statistics that can be retrieved from an RTP instance */
 enum ast_rtp_instance_stat {
 	/*! Retrieve all statistics */
 	AST_RTP_INSTANCE_STAT_ALL = 0,
@@ -183,7 +183,7 @@
 /*! Maximum RTP-specific code */
 #define AST_RTP_MAX                     AST_RTP_CISCO_DTMF
 
-/*!< Structure that represents a payload */
+/*! Structure that represents a payload */
 struct ast_rtp_payload_type {
 	/*! Is this an Asterisk value */
 	int isAstFormat;
@@ -191,7 +191,7 @@
 	int code;
 };
 
-/*!< Structure that represents statistics from an RTP instance */
+/*! Structure that represents statistics from an RTP instance */
 struct ast_rtp_instance_stats {
 	/*! Number of packets transmitted */
 	unsigned int txcount;
@@ -266,7 +266,7 @@
 return 0; \
 }
 
-/*!< Structure that represents an RTP stack (engine) */
+/*! Structure that represents an RTP stack (engine) */
 struct ast_rtp_engine {
 	/*! Name of the RTP engine, used when explicitly requested */
 	const char *name;        
@@ -312,7 +312,7 @@
 	AST_RWLIST_ENTRY(ast_rtp_engine) entry;
 };
 
-/*!< Structure that represents codec and packetization information */
+/*! Structure that represents codec and packetization information */
 struct ast_rtp_codecs {
 	/*! Codec packetization preferences */
 	struct ast_codec_pref pref;
@@ -320,7 +320,7 @@
 	struct ast_rtp_payload_type payloads[AST_RTP_MAX_PT];
 };
 
-/*!< Structure that represents an RTP session (instance) */
+/*! Structure that represents an RTP session (instance) */
 struct ast_rtp_instance {
 	/*! Engine that is handling this RTP instance */
 	struct ast_rtp_engine *engine;
@@ -344,7 +344,7 @@
 	int keepalive;
 };
 
-/*!< Structure that represents the glue that binds an RTP instance to a channel */
+/*! Structure that represents the glue that binds an RTP instance to a channel */
 struct ast_rtp_glue {
 	/*! Name of the channel driver that this glue is responsible for */
 	const char *type;




More information about the svn-commits mailing list