Ignore:
Timestamp:
Jan 28, 2020 1:47:56 AM (4 years ago)
Author:
riza
Message:

Close #2262: Notify when IP change handling is completed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_legacy.c

    r6123 r6137  
    17561756} 
    17571757 
     1758static void ui_handle_ip_change() 
     1759{ 
     1760    pjsua_ip_change_param param; 
     1761    pjsua_ip_change_param_default(&param); 
     1762    pjsua_handle_ip_change(&param); 
     1763} 
    17581764 
    17591765/* 
     
    20072013            break; 
    20082014 
     2015        case 'I': /* Handle IP change. */ 
     2016            ui_handle_ip_change(); 
     2017            break; 
     2018 
    20092019        default: 
    20102020            if (menuin[0] != '\n' && menuin[0] != '\r') { 
Note: See TracChangeset for help on using the changeset viewer.