summaryrefslogtreecommitdiff
path: root/pjsip
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-02-25 02:04:42 +0000
committerBenny Prijono <bennylp@teluu.com>2006-02-25 02:04:42 +0000
commite5290641d50566a9aff8eae9bec8d585f79077de (patch)
tree4987d6239ad1a40eb558667b7c6a81fc21b82e40 /pjsip
parentd5b883d52b22b6fa6ea17d99a9aed46edb3c5b56 (diff)
Synched with documentation
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@228 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip')
-rw-r--r--pjsip/include/pjsip-simple/evsub.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/pjsip/include/pjsip-simple/evsub.h b/pjsip/include/pjsip-simple/evsub.h
index 1977ee44..ba1dd0a6 100644
--- a/pjsip/include/pjsip-simple/evsub.h
+++ b/pjsip/include/pjsip-simple/evsub.h
@@ -173,9 +173,9 @@ struct pjsip_evsub_user
* This callback is called when it is time for the client to refresh
* the subscription.
*
- * This callback is OPTIONAL. When it is not implemented, the default
- * behavior is to refresh subscription by sending SUBSCRIBE with the
- * interval set to current/last interval.
+ * This callback is OPTIONAL when PJSIP package such as presence or
+ * refer is used; the event package will refresh subscription by sending
+ * SUBSCRIBE with the interval set to current/last interval.
*
* @param sub The subscription instance.
*/
@@ -185,8 +185,9 @@ struct pjsip_evsub_user
* This callback is called when server doesn't receive subscription
* refresh after the specified subscription interval.
*
- * This callback is OPTIONAL. When it is not implemented, the default
- * behavior is to send NOTIFY to terminate the subscription.
+ * This callback is OPTIONAL when PJSIP package such as presence or
+ * refer is used; the event package send NOTIFY to terminate the
+ * subscription.
*/
void (*on_server_timeout)(pjsip_evsub *sub);
@@ -399,7 +400,8 @@ PJ_DECL(pj_status_t) pjsip_evsub_send_request( pjsip_evsub *sub,
/**
- * Get the event subscription instance in the transaction.
+ * Get the event subscription instance associated with the specified
+ * transaction.
*
* @param tsx The transaction.
*