[svn-commits] trunk r31495 - /trunk/channels/chan_sip.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu Jun 1 12:21:47 MST 2006
Author: oej
Date: Thu Jun 1 14:21:46 2006
New Revision: 31495
URL: http://svn.digium.com/view/asterisk?rev=31495&view=rev
Log:
- Formatting
- Add some comments
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=31495&r1=31494&r2=31495&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Thu Jun 1 14:21:46 2006
@@ -4035,19 +4035,22 @@
return 0;
}
-/*! \brief Process SIP SDP and activate RTP channels---*/
+/*! \brief Process SIP SDP, select formats and activate RTP channels */
static int process_sdp(struct sip_pvt *p, struct sip_request *req)
{
- const char *m;
+ const char *m; /* SDP media offer */
const char *c;
const char *a;
char host[258];
char iabuf[INET_ADDRSTRLEN];
int len = -1;
- int portno = -1;
- int vportno = -1;
+ int portno = -1; /* Audio port */
+ int vportno = -1; /* Video port */
+
+ /* Peer capability is the capability in the SDP, non codec is RFC2833 DTMF (101) */
int peercapability, peernoncodeccapability;
- int vpeercapability=0, vpeernoncodeccapability=0;
+
+ int vpeercapability=0, vpeernoncodeccapability=0; /* Peer's video capabilities */
struct sockaddr_in sin;
const char *codecs;
struct hostent *hp;
@@ -4056,8 +4059,8 @@
int destiterator = 0;
int iterator;
int sendonly = 0;
- int x,y;
- int debug=sip_debug_test_pvt(p);
+ int x, y;
+ int debug = sip_debug_test_pvt(p);
struct ast_channel *bridgepeer = NULL;
if (!p->rtp) {
More information about the svn-commits
mailing list