mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-09 06:28:14 +00:00
Fix up the ast_rtp_property enum.
The mis-placement of the latest entry meant that when it was set, it was writing one index past the end of the properties array in the ast_rtp_instance (which happened to be the local_address field). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@250871 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -92,10 +92,15 @@ enum ast_rtp_property {
|
||||
AST_RTP_PROPERTY_STUN,
|
||||
/*! Enable RTCP support */
|
||||
AST_RTP_PROPERTY_RTCP,
|
||||
/*! Maximum number of RTP properties supported */
|
||||
AST_RTP_PROPERTY_MAX,
|
||||
/*! Don't force a new SSRC on new source */
|
||||
AST_RTP_PROPERTY_CONSTANT_SSRC,
|
||||
|
||||
/*!
|
||||
* \brief Maximum number of RTP properties supported
|
||||
*
|
||||
* \note THIS MUST BE THE LAST ENTRY IN THIS ENUM.
|
||||
*/
|
||||
AST_RTP_PROPERTY_MAX,
|
||||
};
|
||||
|
||||
/*! Additional RTP options */
|
||||
|
Reference in New Issue
Block a user