summaryrefslogtreecommitdiff
path: root/pjnath/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-06-19 12:35:33 +0000
committerBenny Prijono <bennylp@teluu.com>2010-06-19 12:35:33 +0000
commit8d35b8f739dbad39422332ecb8376cc18a858f2e (patch)
tree622f42846ed18a5eb31b861693a922f51dd4e008 /pjnath/include
parentf762fd7b4817c6668da0859b188d9d21a21e38bf (diff)
Fixed #1077: In ICE stream transport (ice_strans.c), automaticaly retry allocation once if TURN allocation fails. If this allocation retry also fails, notify the TURN user via on_ice_complete() callback. Details:
- added new PJ_ICE_STRANS_OP_KEEP_ALIVE operation - also added new on_ice_transport_error() pjsua callback to allow application to react to the failure. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3212 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjnath/include')
-rw-r--r--pjnath/include/pjnath/ice_strans.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/pjnath/include/pjnath/ice_strans.h b/pjnath/include/pjnath/ice_strans.h
index 158c303c..91a9a109 100644
--- a/pjnath/include/pjnath/ice_strans.h
+++ b/pjnath/include/pjnath/ice_strans.h
@@ -123,7 +123,12 @@ typedef enum pj_ice_strans_op
PJ_ICE_STRANS_OP_INIT,
/** Negotiation */
- PJ_ICE_STRANS_OP_NEGOTIATION
+ PJ_ICE_STRANS_OP_NEGOTIATION,
+
+ /** This operatino is used to report failure in keep-alive operation.
+ * Currently it is only used to report TURN Refresh failure.
+ */
+ PJ_ICE_STRANS_OP_KEEP_ALIVE
} pj_ice_strans_op;
@@ -152,10 +157,10 @@ typedef struct pj_ice_strans_cb
unsigned src_addr_len);
/**
- * Callback to report status.
+ * Callback to report status of various ICE operations.
*
* @param ice_st The ICE stream transport.
- * @param op The operation
+ * @param op The operation which status is being reported.
* @param status Operation status.
*/
void (*on_ice_complete)(pj_ice_strans *ice_st,