Changes between Initial Version and Version 1 of pjsip-doc/intro


Ignore:
Timestamp:
Dec 4, 2013 1:36:29 AM (10 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pjsip-doc/intro

    v1 v1  
     1{{{ 
     2#!rst 
     3 
     4Introduction to PJSUA2 
     5******************************* 
     6This 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 
     8This 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. 
     9 
     10Getting Started with PJSIP 
     11============================== 
     12To begin using PJSIP 
     13http://trac.pjsip.org/repos/wiki/Getting-Started 
     14 
     15PJSIP Info and Documentation 
     16================================ 
     17PJSIP General Wiki: 
     18http://trac.pjsip.org/repos/wiki 
     19 
     20PJSIP FAQ: 
     21http://trac.pjsip.org/repos/wiki/FAQ 
     22 
     23PJSIP Reference Manual: 
     24http://trac.pjsip.org/repos/wiki - Reference Manual 
     25 
     26Building PJSUA2 
     27================= 
     28PJSUA2 API declaration can be found in pjproject/pjsip/include/pjsua2 while the source codes are located in pjproject/pjsip/src/pjsua2. It will be automatically built when you compile PJSIP. 
     29 
     30PJSUA2 Language Binding Support 
     31=================================== 
     32Optional if you want to: 
     33​SWIG (minimum version 2.0.5) 
     34 
     35}}}