Changes between Version 4 and Version 5 of pjsip-doc/account
- Timestamp:
- Dec 4, 2013 6:52:05 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pjsip-doc/account
v4 v5 27 27 cout << (ai.regIsActive? "*** Register: code=" : "*** Unregister: code=") 28 28 << prm.code << endl; 29 30 29 } 31 30 … … 69 68 acc->create(acc_cfg); 70 69 } catch(Error& err) { 71 cout << "Account creation error: " << err. reason<< endl;70 cout << "Account creation error: " << err.info() << endl; 72 71 } 73 72 … … 88 87 acc->create(acc_cfg); 89 88 } catch(Error& err) { 90 cout << "Account creation error: " << err. reason<< endl;89 cout << "Account creation error: " << err.info() << endl; 91 90 } 92 91 … … 103 102 acc->create(acc_cfg); 104 103 } catch(Error& err) { 105 cout << "Account creation error: " << err. reason<< endl;104 cout << "Account creation error: " << err.info() << endl; 106 105 } 107 106 … … 129 128 - stop/start SIP registration 130 129 131 Please see the reference documentation for Account for more info. Calls, presence, and buddy list will be explained in later sections.130 Please see the reference documentation for Account for more info. Calls, presence, and buddy will be explained in later chapters. 132 131 133 132