Changes between Version 4 and Version 5 of pjsip-doc/account


Ignore:
Timestamp:
Dec 4, 2013 6:52:05 AM (10 years ago)
Author:
ming
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pjsip-doc/account

    v4 v5  
    2727            cout << (ai.regIsActive? "*** Register: code=" : "*** Unregister: code=") 
    2828                 << prm.code << endl; 
    29  
    3029        } 
    3130     
     
    6968        acc->create(acc_cfg); 
    7069    } catch(Error& err) { 
    71         cout << "Account creation error: " << err.reason << endl; 
     70        cout << "Account creation error: " << err.info() << endl; 
    7271    } 
    7372 
     
    8887        acc->create(acc_cfg); 
    8988    } catch(Error& err) { 
    90         cout << "Account creation error: " << err.reason << endl; 
     89        cout << "Account creation error: " << err.info() << endl; 
    9190    } 
    9291 
     
    103102        acc->create(acc_cfg); 
    104103    } catch(Error& err) { 
    105         cout << "Account creation error: " << err.reason << endl; 
     104        cout << "Account creation error: " << err.info() << endl; 
    106105    } 
    107106 
     
    129128- stop/start SIP registration 
    130129 
    131 Please see the reference documentation for Account for more info. Calls, presence, and buddy list will be explained in later sections. 
     130Please see the reference documentation for Account for more info. Calls, presence, and buddy will be explained in later chapters. 
    132131 
    133132