Changeset 3212 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
- Timestamp:
- Jun 19, 2010 12:35:33 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
r3183 r3212 2910 2910 2911 2911 /* 2912 * Notification on ICE error. 2913 */ 2914 static void on_ice_transport_error(int index, pj_ice_strans_op op, 2915 pj_status_t status, void *param) 2916 { 2917 PJ_UNUSED_ARG(op); 2918 PJ_UNUSED_ARG(param); 2919 PJ_PERROR(1,(THIS_FILE, status, 2920 "ICE keep alive failure for transport %d", index)); 2921 } 2922 2923 /* 2912 2924 * Print buddy list. 2913 2925 */ … … 4506 4518 app_config.cfg.cb.on_mwi_info = &on_mwi_info; 4507 4519 app_config.cfg.cb.on_transport_state = &on_transport_state; 4520 app_config.cfg.cb.on_ice_transport_error = &on_ice_transport_error; 4508 4521 app_config.log_cfg.cb = log_cb; 4509 4522
Note: See TracChangeset
for help on using the changeset viewer.