Changes between Version 4 and Version 5 of pjsip-doc/intro
- Timestamp:
- Feb 26, 2014 9:08:30 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pjsip-doc/intro
v4 v5 2 2 #!rst 3 3 4 Introduction to PJSUA24 Introduction 5 5 ******************************* 6 6 This documentation is intended for developers looking to develop Session Initiation Protocol (SIP) based client application. Some knowledge on SIP is definitely required, and of course some programming experience. Prior knowledge of PJSUA C API is not needed, although it will probably help. 7 7 8 This PJSUA2 module provides very high level C++ API to do SIP calls, presence, and instant messaging, as well as handling media and NAT traversal. Knowledge of SIP protocol details (such as the grammar, transaction, dialog, and whatnot) are not required, however you should know how SIP works in general and particularly how to configure SIP clients to, e.g. register to a SIP provider, specify SIP URI to make call to, and so on, to use the module.8 PJSIP libraries provide multi-level APIs to do SIP calls, presence, and instant messaging, as well as handling media and NAT traversal. Knowledge of SIP protocol details (such as the grammar, transaction, dialog, and whatnot) are not required (but it will help a lot!), however you should know how SIP works in general and particularly how to configure SIP clients to, e.g. register to a SIP provider, specify SIP URI to make call to, and so on, to use the module. 9 9 10 10 Getting Started with PJSIP … … 30 30 .. _`PJSIP Reference Manual`: http://trac.pjsip.org/repos/wiki 31 31 32 Building PJSUA233 =================34 PJSUA2 API declaration can be found in ``pjsip/include/pjsua2`` while the source codes are located in ``pjsip/src/pjsua2``. It will be automatically built when you compile PJSIP.35 32 36 PJSUA2 Language Binding Support37 ===================================38 The PJSUA2 API is also available for other programming languages via SWIG binding, such as Java and Python.39 33 40 34 }}}