summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2006-04-17 13:08:24 +0000
committerOlle Johansson <oej@edvina.net>2006-04-17 13:08:24 +0000
commitbedd0c2ed34bd29c3eee544dfbf877ee3a38278b (patch)
tree03c89e0ce0d5fca650a1bdf43f91caa3e27759fb /channels
parent382fd7260c917d1a7c0f782cfebf4355df8ac2b3 (diff)
Documentation update
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20900 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 1e0fbab48..039712e4f 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -801,10 +801,10 @@ static struct sip_pvt {
int rtpholdtimeout; /*!< RTP timeout when on hold */
int rtpkeepalive; /*!< Send RTP packets for keepalive */
enum transfermodes allowtransfer; /*! SIP Refer restriction scheme */
- enum subscriptiontype subscribed; /*!< Is this dialog a subscription? */
- int stateid;
- int laststate; /*!< Last known extension state */
- int dialogver;
+ enum subscriptiontype subscribed; /*!< SUBSCRIBE: Is this dialog a subscription? */
+ int stateid; /*!< SUBSCRIBE: ID for devicestate subscriptions */
+ int laststate; /*!< SUBSCRIBE: Last known extension state */
+ int dialogver; /*!< SUBSCRIBE: Version for subscription dialog-info */
struct ast_dsp *vad; /*!< Voice Activation Detection dsp */
@@ -815,7 +815,7 @@ static struct sip_pvt {
struct ast_rtp *vrtp; /*!< Video RTP session */
struct sip_pkt *packets; /*!< Packets scheduled for re-transmission */
struct sip_history_head *history; /*!< History of this SIP dialog */
- struct ast_variable *chanvars; /*!< Channel variables to set for call */
+ struct ast_variable *chanvars; /*!< Channel variables to set for inbound call */
struct sip_pvt *next; /*!< Next dialog in chain */
struct sip_invite_param *options; /*!< Options for INVITE */
} *iflist = NULL;