Changes between Version 5 and Version 6 of Python_SIP_Tutorial
- Timestamp:
- Jul 15, 2008 11:33:16 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python_SIP_Tutorial
v5 v6 51 51 52 52 53 [[BR]] 54 53 55 === Lib Class === 56 ---- 54 57 55 58 The [http://www.pjsip.org/python/pjsua.htm#Lib Lib] class provides the base API's to communicate with PJSUA-API and to create objects (such as [http://www.pjsip.org/python/pjsua.htm#Account Account] and [http://www.pjsip.org/python/pjsua.htm#Transport Transport]). … … 83 86 Both the {{{init()}}} and {{{start()}}} methods above may be given additional parameters. Please see [http://www.pjsip.org/python/pjsua.htm#Lib Lib] class reference manual for more information. 84 87 88 [[BR]] 85 89 86 90 === Transport === 91 ---- 87 92 88 93 Application needs to create one or more [http://www.pjsip.org/python/pjsua.htm#Transport Transport] objects before it can send or receive SIP messages: … … 98 103 }}} 99 104 105 [[BR]] 100 106 101 107 === Accounts === 108 ---- 102 109 103 110 Application must create at least one [http://www.pjsip.org/python/pjsua.htm#Account Account] before it can send and receive SIP messages. An account specifies the '''From:''' URI, so it's needed before you can send SIP messages. … … 188 195 189 196 190 === = Account Sample Application ====197 === Account Sample Application === 191 198 192 199 For a complete account sample application (including registration), please see source:pjproject/trunk/pjsip-apps/src/python/samples/registration.py 193 200 194 201 202 [[BR]] 203 195 204 === Calls === 205 ---- 196 206 197 207 ==== Creating Calls ==== … … 246 256 247 257 248 === = Call Sample Application ====258 === Call Sample Application === 249 259 250 260 For a complete call sample application, please see source:pjproject/trunk/pjsip-apps/src/python/samples/call.py 251 261 262 263 [[BR]] 264 265 === Presence and Instant Messaging === 266 267 For a complete presence and instant messaging sample application, please see source:pjproject/trunk/pjsip-apps/src/python/samples/presence.py 268 269 270 [[BR]] 271 272 = Reference Documentation = 273 ---- 274 275 Please see [http://www.pjsip.org/python/pjsua.htm pjsua] Python module documentation for reference. 276