Changes between Version 5 and Version 6 of Python_SIP_Tutorial


Ignore:
Timestamp:
Jul 15, 2008 11:33:16 AM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python_SIP_Tutorial

    v5 v6  
    5151 
    5252 
     53[[BR]] 
     54 
    5355=== Lib Class === 
     56---- 
    5457 
    5558The [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]). 
     
    8386Both 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. 
    8487 
     88[[BR]] 
    8589 
    8690=== Transport === 
     91---- 
    8792 
    8893Application needs to create one or more [http://www.pjsip.org/python/pjsua.htm#Transport Transport] objects before it can send or receive SIP messages: 
     
    98103 }}} 
    99104 
     105[[BR]] 
    100106 
    101107=== Accounts === 
     108---- 
    102109 
    103110Application 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. 
     
    188195 
    189196 
    190 ==== Account Sample Application ==== 
     197=== Account Sample Application === 
    191198 
    192199For a complete account sample application (including registration), please see source:pjproject/trunk/pjsip-apps/src/python/samples/registration.py 
    193200 
    194201 
     202[[BR]] 
     203 
    195204=== Calls === 
     205---- 
    196206 
    197207==== Creating Calls ==== 
     
    246256 
    247257 
    248 ==== Call Sample Application ==== 
     258=== Call Sample Application === 
    249259 
    250260For a complete call sample application, please see source:pjproject/trunk/pjsip-apps/src/python/samples/call.py 
    251261 
     262 
     263[[BR]] 
     264 
     265=== Presence and Instant Messaging === 
     266 
     267For 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 
     275Please see [http://www.pjsip.org/python/pjsua.htm pjsua] Python module documentation for reference. 
     276