Changes between Version 1 and Version 2 of pjsip-doc/intro
- Timestamp:
- Dec 4, 2013 12:12:36 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pjsip-doc/intro
v1 v2 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 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 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. 9 9 10 10 Getting Started with PJSIP 11 11 ============================== 12 To begin using PJSIP 13 http://trac.pjsip.org/repos/wiki/Getting-Started 12 Check http://trac.pjsip.org/repos/wiki/PJSIP-Datasheet to make sure that it has the features that you require. 13 14 Then to begin using PJSIP, http://trac.pjsip.org/repos/wiki/Getting-Started contains instructions to acquire and build PJSIP on various platforms that we support. 14 15 15 16 PJSIP Info and Documentation 16 17 ================================ 17 PJSIP General Wiki: 18 To get other relevant info and documentations about PJSIP, you can visit: 19 20 - PJSIP General Wiki: 18 21 http://trac.pjsip.org/repos/wiki 19 20 PJSIP FAQ: 22 - PJSIP FAQ: 21 23 http://trac.pjsip.org/repos/wiki/FAQ 22 23 PJSIP Reference Manual: 24 - PJSIP Reference Manual: 24 25 http://trac.pjsip.org/repos/wiki - Reference Manual 25 26 … … 30 31 PJSUA2 Language Binding Support 31 32 =================================== 32 Optional if you want to: 33 SWIG (minimum version 2.0.5) 33 The PJSUA2 API is also available for other programming languages via SWIG binding, such as Java and Python. 34 34 35 35 }}}