blob: 1152307ec3b7c2f54ac5dcf6b8c29a0ef1e732dc [file] [log] [blame]
Alexandre Lision0e143012014-01-22 11:02:46 -05001
2
3Endpoint
4************
5The Endpoint class is a singleton class, and application MUST create one and at most one of this class instance before it can do anything else. This class is the core class of PJSUA2, and it provides the following functions:
6
7- Starting up and shutting down
8- Customization of configurations, such as core UA (User Agent) SIP configuration, media configuration, and logging configuration
9
10This section will describe the functions above.
11
12To use the Endpoint class, normally application does not need to subclass it unless:
13
14- application wants to implement/override Endpoints callback methods to get the events such as transport state change or NAT detection completion, or
15- application schedules a timer using Endpoint.utilTimerSchedule() API. In this case, application needs to implement the onTimer() callback to get the notification when the timer expires.
16
17Instantiating the Endpoint
18--------------------------
19Before anything else, you must instantiate the Endpoint class::
20
21 Endpoint *ep = new Endpoint;
22
23Once the endpoint is instantiated, you can retrieve the Endpoint instance using Endpoint.instance() static method.
24
25Creating the Library
26----------------------
27Create the library by calling its libCreate() method::
28
29 try {
30 ep->libCreate();
31 } catch(Error& err) {
32 cout << "Startup error: " << err.reason << endl;
33 }
34
35The libCreate() method will raise exception if error occurs, so we need to trap the exception using try/catch clause as above.
36
37Initializing the Library and Configuring the Settings
38----------------------------------------------------------------------------
39
40The EpConfig class provides endpoint configuration which allows the customization of the following settings:
41
42- UAConfig, to specify core SIP user agent settings.
43- MediaConfig, to specify various media settings, including ICE and TURN.
44- LogConfig, to customize logging settings.
45
46To customize the settings, create instance of EpConfig class and specify them during the endpoint initialization (will be explained more later), for example::
47
48 EpConfig ep_cfg;
49 ep_cfg.logConfig.level = 5;
50 ep_cfg.uaConfig.maxCalls = 4;
51 ep_cfg.mediaConfig.sndClockRate = 16000;
52
53Next, you can initialize the library by calling libInit()::
54
55 try {
56 EpConfig ep_cfg;
57 // Specify customization of settings in ep_cfg
58 ep->libInit(ep_cfg);
59 } catch(Error& err) {
60 cout << "Initialization error: " << err.reason << endl;
61 }
62
63The snippet above initializes the library with the default settings.
64
65Creating One or More Transports
66--------------------------------------------------
67Application needs to create one or more transports before it can send or receive SIP messages::
68
69 try {
70 TransportConfig tcfg;
71 tcfg.port = 5060;
72 TransportId tid = ep->transportCreate(PJSIP_TRANSPORT_UDP, tcfg);
73 } catch(Error& err) {
74 cout << "Transport creation error: " << err.reason << endl;
75 }
76
77The transportCreate() method returns the newly created Transport ID and it takes the transport type and TransportConfig object to customize the transport settings like bound address and listening port number. Without this, by default the transport will be bound to INADDR_ANY and any available port.
78
79There is no real use of the Transport ID, except to create userless account (with Account.create(), as will be explained later), and perhaps to display the list of transports to user if the application wants it.
80
81Starting the Library
82--------------------
83Now we're ready to start the library. We need to start the library to finalize the initialization phase, e.g. to complete the initial STUN address resolution, initialize/start the sound device, etc. To start the library, call ​libStart() method::
84
85 try {
86 ep->libStart();
87 } catch(Error& err) {
88 cout << "Startup error: " << err.reason << endl;
89 }
90
91Shutting Down the Library
92--------------------------------------
93Once the application exits, the library needs to be shutdown so that resources can be released back to the operating system. This is done by deleting the Endpoint instance, which will internally call ​libDestroy()::
94
95 delete ep;
96