SipFeatures

Version 146 (Adrian Georgescu, 10/31/2010 09:38 am)

1 109 Adrian Georgescu
= Features =
2 1 Adrian Georgescu
3 137 Adrian Georgescu
''SIP SIMPLE client SDK'' is a Software Development Kit for development of Real Time Applications based on SIP and related protocols for Audio, Instant Messaging, File Transfers, Desktop Sharing and Presence. Other media types can be easily added by using an extensible high-level API.
4 1 Adrian Georgescu
5 144 Adrian Georgescu
The library has cross platform capabilities on Linux OS, Mac OSX and Microsoft Windows. The library should work with minimal changes on any platform that supports C and Python development environments. The SIP and media stacks are based on pjsip 1.0 version with relevant patches from later versions applied.
6 1 Adrian Georgescu
7 109 Adrian Georgescu
To see ''SIP SIMPLE client SDK'' features in action you can try [http://icanblink.com Blink].
8 109 Adrian Georgescu
9 1 Adrian Georgescu
== General Features ==
10 96 Adrian Georgescu
11 119 Adrian Georgescu
 * Written in Python Programming Language
12 119 Adrian Georgescu
 * Non-blocking Asynchronous Engine
13 119 Adrian Georgescu
 * High Level Middleware
14 119 Adrian Georgescu
 * Configuration Framework
15 111 Adrian Georgescu
 * TLS Security for signaling (SIP) and media (MSRP, XCAP)
16 1 Adrian Georgescu
 * Multiple SIP Accounts support
17 115 Adrian Georgescu
 * Multiple Media Types per Session (e.g. Audio + IM)
18 109 Adrian Georgescu
 * Trace capability for all underlying protocols
19 115 Adrian Georgescu
 * Failover for DNS lookups, SIP and MSRP routing
20 109 Adrian Georgescu
 * Supports re-INVITE for adding and removing media
21 113 Adrian Georgescu
 * Automatically handling if IP Address changes
22 119 Adrian Georgescu
 * Audio Conference Bridge
23 119 Adrian Georgescu
 * Wav Player and Recorder
24 128 Adrian Georgescu
 * Acoustic Echo Cancelation (based on Speex MDF algorithm)
25 119 Adrian Georgescu
 * Answering Machine
26 109 Adrian Georgescu
 * Wide-band Internet codecs: Speex and G722
27 109 Adrian Georgescu
 * PSTN compatible codecs: G711, iLBC, GSM
28 1 Adrian Georgescu
29 109 Adrian Georgescu
Supported media types:
30 1 Adrian Georgescu
31 113 Adrian Georgescu
 * Audio (RTP/sRTP)
32 113 Adrian Georgescu
 * Instant Messaging (MSRP)
33 113 Adrian Georgescu
 * File Transfer (MSRP)
34 109 Adrian Georgescu
 * Desktop Sharing (VNC over MSRP)
35 1 Adrian Georgescu
36 109 Adrian Georgescu
All media types can be combined together in the same SIP session.
37 1 Adrian Georgescu
38 1 Adrian Georgescu
The library uses a separated from the core lookup mechanism for the next hop routing. This important feature allows the library to be used for building SIP clients that operate in combination with any SIP provider (by employing RFC 3263 DNS lookups), in a server-less LAN operation (using Bonjour protocol) or integrated into a network overlay developed by a third party (e.g. P2PSIP overlay).
39 1 Adrian Georgescu
40 120 Adrian Georgescu
== Implemented Standards ==
41 1 Adrian Georgescu
42 110 Adrian Georgescu
=== SIP Signaling ===
43 110 Adrian Georgescu
44 119 Adrian Georgescu
 * SIP, Session Initiation Protocol [http://tools.ietf.org/html/rfc3261 RFC3261] 
45 119 Adrian Georgescu
 * SDP, Session Description Protocol [http://tools.ietf.org/html/rfc4566 RFC4566] 
46 122 Adrian Georgescu
 * An Offer/Answer Model with Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc3264 RFC3264] 
47 123 Adrian Georgescu
 * Reliability of Provisional Responses in Session Initiation Protocol [http://tools.ietf.org/html/rfc3262 RFC3262]
48 123 Adrian Georgescu
 * HTTP Authentication: Basic and Digest Access Authentication [http://tools.ietf.org/html/rfc2617 RFC2617]
49 1 Adrian Georgescu
 * The Reason Header Field for the Session Initiation Protocol [http://tools.ietf.org/html/rfc3326 RFC3326]
50 122 Adrian Georgescu
51 94 Adrian Georgescu
52 129 Adrian Georgescu
=== Address Resolution ===
53 1 Adrian Georgescu
54 131 Adrian Georgescu
 * Locating SIP services: [http://tools.ietf.org/html/rfc3263 RFC3263]
55 131 Adrian Georgescu
 * Bonjour multicast DNS: [http://tools.ietf.org/html/draft-lee-sip-dns-sd-uri-03]
56 69 Adrian Georgescu
57 110 Adrian Georgescu
=== NAT Traversal ===
58 1 Adrian Georgescu
59 109 Adrian Georgescu
 * SIP Signaling: Symmetric Response Routing Symmetric media [http://tools.ietf.org/html/rfc3581 RFC3581]
60 130 Adrian Georgescu
 * STUN: Session Traversal Utilities for NAT [http://tools.ietf.org/html/rfc3489 RFC3489]
61 124 Adrian Georgescu
 * RTP media (Audio and Video): ICE, Interactive Connectivity Establishment [http://tools.ietf.org/html/rfc5245 RFC5245]
62 109 Adrian Georgescu
 * MSRP media (Instant Messaging and File Transfer): MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976]
63 69 Adrian Georgescu
  
64 113 Adrian Georgescu
=== Voice over IP ===
65 1 Adrian Georgescu
66 109 Adrian Georgescu
 * RTP, A Transport Protocol for Real-Time Applications [http://tools.ietf.org/html/rfc3550 RFC3550]
67 100 Adrian Georgescu
 * Real Time Control Protocol (RTCP) attribute in Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc3605 RFC3605]
68 1 Adrian Georgescu
 * The Secure Real-time Transport Protocol (SRTP)  [http://tools.ietf.org/html/rfc3711 RFC3711]
69 109 Adrian Georgescu
 * Generation and parsing of RFC 2833/telephone-events payload in both RTP and SDP [http://tools.ietf.org/html/rfc2833 RFC2833]
70 107 Adrian Georgescu
71 110 Adrian Georgescu
=== Instant Messaging ===
72 109 Adrian Georgescu
73 1 Adrian Georgescu
 * Common Presence and Instant Messaging (CPIM): [http://tools.ietf.org/html/rfc3862 RFC 3862]
74 109 Adrian Georgescu
 * Session Initiation Protocol (SIP) Extension for Instant Messaging  [http://tools.ietf.org/html/rfc3428 RFC3428]
75 109 Adrian Georgescu
 * MSRP Protocol [http://tools.ietf.org/html/rfc4975 RFC4975]
76 1 Adrian Georgescu
 * Indication of Message Composition for Instant Messaging [http://tools.ietf.org/html/rfc3994 RFC3994]
77 109 Adrian Georgescu
 * Message Summary Event Package [http://tools.ietf.org/html/rfc3842 RFC3842]
78 109 Adrian Georgescu
 * File Transfer [http://tools.ietf.org/html/rfc5547 RFC5547]
79 142 Adrian Georgescu
 * MSRP Alternative Connection Model (ACM) http://tools.ietf.org/html/draft-ietf-simple-msrp-acm-09
80 142 Adrian Georgescu
 * Session Matching Update for MSRP https://datatracker.ietf.org/doc/draft-ietf-simple-msrp-sessmatch
81 105 Adrian Georgescu
82 110 Adrian Georgescu
=== Desktop Sharing ===
83 1 Adrian Georgescu
84 109 Adrian Georgescu
 * Variation of [http://tools.ietf.org/html/draft-garcia-mmusic-sdp-collaboration-00 draft-garcia-mmusic-sdp-collaboration-00] using RFB over MSRP
85 109 Adrian Georgescu
86 110 Adrian Georgescu
=== Conferencing ===
87 109 Adrian Georgescu
88 1 Adrian Georgescu
 * Conference Event Package [http://tools.ietf.org/html/rfc4575 RFC4575]
89 116 Adrian Georgescu
 * A Framework for Conferencing with the Session Initiation Protocol [http://tools.ietf.org/html/rfc4353 RFC4353] (work in progress)
90 116 Adrian Georgescu
 * SIP Call Control - Conferencing for User Agents [http://tools.ietf.org/html/rfc4579 RFC4579] (work in progress)
91 132 Adrian Georgescu
 * MSRP ad-hoc multi-party chat sessions [http://tools.ietf.org/html/draft-ietf-simple-chat-06 draft-ietf-simple-chat-06] (work in progress)
92 109 Adrian Georgescu
93 110 Adrian Georgescu
=== Presence ===
94 1 Adrian Georgescu
95 139 Adrian Georgescu
All features have been tested against with [http://opensips.org OpenSIPS] Presence Agent and  [http://openxcap.org OpenXCAP] server.
96 1 Adrian Georgescu
97 117 Adrian Georgescu
 * SIP Specific Event Notification (SUBSCRIBE and NOTIFY methods) [http://tools.ietf.org/html/rfc3265 RFC3265]
98 117 Adrian Georgescu
 * SIP Extension for Event State Publication (PUBLISH method) [http://tools.ietf.org/html/rfc3903 RFC3903]     
99 117 Adrian Georgescu
 * Presence Data Model (PIDF) [http://tools.ietf.org/html/rfc3863 RFC3863], [http://tools.ietf.org/html/rfc3379 RFC3379], [http://tools.ietf.org/html/rfc4479 RFC4479]
100 117 Adrian Georgescu
 * Watcher-info Event Package [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858]
101 118 Adrian Georgescu
 * Rich Presence Extensions to PIDF [http://tools.ietf.org/html/rfc4480 RFC4480]
102 118 Adrian Georgescu
 * Contact Information Extension to PIDF [http://tools.ietf.org/html/rfc4482 RFC4482]
103 118 Adrian Georgescu
 * User Agent Capability Extension to PIDF [http://tools.ietf.org/html/rfc5196 RFC5196] 
104 114 Adrian Georgescu
 * XCAP Protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825]
105 117 Adrian Georgescu
 * Common Policy [http://www.tools.ietf.org/html/rfc4745 RFC4745]  
106 1 Adrian Georgescu
 * Presence Rules [http://www.tools.ietf.org/html/rfc5025 RFC5025]
107 107 Adrian Georgescu
 * Resource Lists [http://www.tools.ietf.org/html/rfc4826 RFC4826]
108 98 Adrian Georgescu
 * RLS Services [http://www.tools.ietf.org/html/rfc4826 RFC4826]
109 1 Adrian Georgescu
 * PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827]
110 146 Adrian Georgescu
 * XCAP Diff [http://tools.ietf.org/html/rfc5874 RFC5874]
111 145 Adrian Georgescu
 * OMA Reference Release Definition for XDM v1.1 and Presence SIMPLE v1.1 [http://www.openmobilealliance.org/Technical/release_program/docs/CopyrightClick.aspx?pck=XDM_PRS_IMPL&file=V1_0-20081209-A/OMA-RRELD-XDM_PRS_IMPL-V1_0-20081209-A.pdf Implementation Guidelines]
112 145 Adrian Georgescu
 * OMA XML [http://www.openmobilealliance.org/technical/release_program/xdm_v1_1.aspx Document Management V1.1]