SipFeatures
Version 111 (Adrian Georgescu, 02/19/2010 12:54 am)
1 | 109 | Adrian Georgescu | = Features = |
---|---|---|---|
2 | 1 | Adrian Georgescu | |
3 | 2 | Adrian Georgescu | [[TOC(WikiStart, Sip*, depth=2)]] |
4 | 2 | Adrian Georgescu | |
5 | 109 | Adrian Georgescu | ''SIP SIMPLE client SDK'' is a Software Development Kit for development of Real Time Applications based on SIP and related protocols for media transport like Presence, Audio and Instant Messaging (IM). Other media types can be easily added by using an extensible high-level API. |
6 | 49 | Adrian Georgescu | |
7 | 109 | Adrian Georgescu | The software has undergone in the past years several interoperability tests at [http://www.sipit.net SIPIT] and today is of industry strength quality. The SIP stack is provided by [http://www.pjsip.org PJSIP]. |
8 | 1 | Adrian Georgescu | |
9 | 109 | Adrian Georgescu | The library has cross platform capabilities on Linux OS, Mac OSX (Leopard and Snow Leopard) and Microsoft Windows (roadmap). The library should work with minimal changes on any platform that supports C and Python development environments. |
10 | 1 | Adrian Georgescu | |
11 | 109 | Adrian Georgescu | To see ''SIP SIMPLE client SDK'' features in action you can try [http://icanblink.com Blink]. |
12 | 109 | Adrian Georgescu | |
13 | 1 | Adrian Georgescu | == General Features == |
14 | 96 | Adrian Georgescu | |
15 | 109 | Adrian Georgescu | * Written in Python |
16 | 110 | Adrian Georgescu | * Non-blocking asynchronous based on event notifications |
17 | 111 | Adrian Georgescu | * High level middleware with configuration framework |
18 | 111 | Adrian Georgescu | * TLS Security for signaling (SIP) and media (MSRP, XCAP) |
19 | 109 | Adrian Georgescu | * Multiple SIP Accounts support |
20 | 1 | Adrian Georgescu | * Multiple Media Types per Session (e.g. Audio + Instant Messaging + Desktop Sharing) |
21 | 109 | Adrian Georgescu | * Trace capability for all underlying protocols |
22 | 109 | Adrian Georgescu | * Failover for DNS lookups, SIP next hop routing and MSRP relay reservation |
23 | 109 | Adrian Georgescu | * Supports re-INVITE for adding and removing media streams to existing sessions |
24 | 109 | Adrian Georgescu | * Automatically handles changes of System IP Address |
25 | 111 | Adrian Georgescu | * Audio Conference Bridge |
26 | 109 | Adrian Georgescu | * Wav Player and Recorder |
27 | 111 | Adrian Georgescu | * Acoustic Echo Cancelation (based on Speex MDF algorithm) |
28 | 109 | Adrian Georgescu | * Wide-band Internet codecs: Speex and G722 |
29 | 109 | Adrian Georgescu | * PSTN compatible codecs: G711, iLBC, GSM |
30 | 1 | Adrian Georgescu | |
31 | 109 | Adrian Georgescu | Supported media types: |
32 | 1 | Adrian Georgescu | |
33 | 109 | Adrian Georgescu | * Audio/VoIP (RTP/sRTP) |
34 | 109 | Adrian Georgescu | * Instant Messaging over MSRP |
35 | 109 | Adrian Georgescu | * File Transfer over MSRP |
36 | 109 | Adrian Georgescu | * Desktop Sharing (VNC over MSRP) |
37 | 1 | Adrian Georgescu | |
38 | 109 | Adrian Georgescu | All media types can be combined together in the same SIP session. |
39 | 1 | Adrian Georgescu | |
40 | 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). |
41 | 1 | Adrian Georgescu | |
42 | 110 | Adrian Georgescu | == Normative References == |
43 | 1 | Adrian Georgescu | |
44 | 110 | Adrian Georgescu | === SIP Signaling === |
45 | 110 | Adrian Georgescu | |
46 | 67 | Adrian Georgescu | * Session Initiation Protocol [http://tools.ietf.org/html/rfc3261 RFC3261] |
47 | 1 | Adrian Georgescu | * Session Description Protocol [http://tools.ietf.org/html/rfc4566 RFC4566] |
48 | 94 | Adrian Georgescu | * An Offer/Answer Model with Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc4566 RFC4566] |
49 | 94 | Adrian Georgescu | |
50 | 110 | Adrian Georgescu | === Location Discovery === |
51 | 1 | Adrian Georgescu | |
52 | 109 | Adrian Georgescu | * [http://tools.ietf.org/html/rfc3263 RFC3263] next hop resolution lookup |
53 | 109 | Adrian Georgescu | * Bonjour multicast DNS [http://tools.ietf.org/html/draft-lee-sip-dns-sd-uri-03] (work in progress) |
54 | 69 | Adrian Georgescu | |
55 | 110 | Adrian Georgescu | === NAT Traversal === |
56 | 1 | Adrian Georgescu | |
57 | 109 | Adrian Georgescu | * SIP Signaling: Symmetric Response Routing Symmetric media [http://tools.ietf.org/html/rfc3581 RFC3581] |
58 | 109 | Adrian Georgescu | * RTP media (Audio and Video): Interactive Connectivity Establishment (ICE) [http://www.ietf.org/internet-drafts/draft-ietf-mmusic-ice-19.txt draft-ietf-mmusic-ice-19] |
59 | 109 | Adrian Georgescu | * MSRP media (Instant Messaging and File Transfer): MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976] |
60 | 69 | Adrian Georgescu | |
61 | 110 | Adrian Georgescu | === Voice Over IP === |
62 | 1 | Adrian Georgescu | |
63 | 109 | Adrian Georgescu | * RTP, A Transport Protocol for Real-Time Applications [http://tools.ietf.org/html/rfc3550 RFC3550] |
64 | 100 | Adrian Georgescu | * Real Time Control Protocol (RTCP) attribute in Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc3605 RFC3605] |
65 | 1 | Adrian Georgescu | * The Secure Real-time Transport Protocol (SRTP) [http://tools.ietf.org/html/rfc3711 RFC3711] |
66 | 109 | Adrian Georgescu | * Generation and parsing of RFC 2833/telephone-events payload in both RTP and SDP [http://tools.ietf.org/html/rfc2833 RFC2833] |
67 | 107 | Adrian Georgescu | |
68 | 110 | Adrian Georgescu | === Instant Messaging === |
69 | 109 | Adrian Georgescu | |
70 | 1 | Adrian Georgescu | * Common Presence and Instant Messaging (CPIM): [http://tools.ietf.org/html/rfc3862 RFC 3862] |
71 | 109 | Adrian Georgescu | * Session Initiation Protocol (SIP) Extension for Instant Messaging [http://tools.ietf.org/html/rfc3428 RFC3428] |
72 | 109 | Adrian Georgescu | * MSRP Protocol [http://tools.ietf.org/html/rfc4975 RFC4975] |
73 | 1 | Adrian Georgescu | * Indication of Message Composition for Instant Messaging [http://tools.ietf.org/html/rfc3994 RFC3994] |
74 | 109 | Adrian Georgescu | * Message Summary Event Package [http://tools.ietf.org/html/rfc3842 RFC3842] |
75 | 109 | Adrian Georgescu | * File Transfer [http://tools.ietf.org/html/rfc5547 RFC5547] |
76 | 105 | Adrian Georgescu | |
77 | 110 | Adrian Georgescu | === Desktop Sharing === |
78 | 1 | Adrian Georgescu | |
79 | 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 |
80 | 109 | Adrian Georgescu | |
81 | 110 | Adrian Georgescu | === Conferencing === |
82 | 109 | Adrian Georgescu | |
83 | 109 | Adrian Georgescu | * A Framework for Conferencing with the Session Initiation Protocol [http://tools.ietf.org/html/rfc4353 RFC4353] (work in progress) |
84 | 109 | Adrian Georgescu | * Conference Event Package [http://tools.ietf.org/html/rfc4575 RFC4575] |
85 | 109 | Adrian Georgescu | * MSRP ad-hoc multi-party chat sessions [http://tools.ietf.org/html/draft-ietf-simple-chat-05 draft-ietf-simple-chat-05] (work in progress) |
86 | 109 | Adrian Georgescu | |
87 | 110 | Adrian Georgescu | === Presence === |
88 | 1 | Adrian Georgescu | |
89 | 109 | Adrian Georgescu | All server-side features have been built-in and tested with [http://opensips.org OpenSIPS] Presence Agent and [http://openxcap.org OpenXCAP] server. |
90 | 1 | Adrian Georgescu | |
91 | 77 | Adrian Georgescu | * SIP Specific Event Notification [http://tools.ietf.org/html/rfc3265 RFC3265] |
92 | 1 | Adrian Georgescu | * Presence Data Model [http://tools.ietf.org/html/rfc3863 RFC3863], [http://tools.ietf.org/html/rfc3379 RFC3379], [http://tools.ietf.org/html/rfc4479 RFC4479] |
93 | 106 | Adrian Georgescu | * Watcher-info [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858] |
94 | 1 | Adrian Georgescu | * Common Policy [http://www.tools.ietf.org/html/rfc4745 RFC4745] |
95 | 1 | Adrian Georgescu | * Rich Presence Extensions [http://tools.ietf.org/html/rfc4480 RFC4480] |
96 | 1 | Adrian Georgescu | * Contact Information for the Presence Information Data Format [http://tools.ietf.org/html/rfc4482 RFC4482] |
97 | 1 | Adrian Georgescu | * User Agent Capability Extension to Presence Information Data Format [http://tools.ietf.org/html/rfc5196 RFC5196] |
98 | 76 | Adrian Georgescu | * XCAP Protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825] |
99 | 1 | Adrian Georgescu | * Presence Rules [http://www.tools.ietf.org/html/rfc5025 RFC5025] |
100 | 1 | Adrian Georgescu | * Dialog Rules (custom application modelled after Presence rules) |
101 | 107 | Adrian Georgescu | * Resource Lists [http://www.tools.ietf.org/html/rfc4826 RFC4826] |
102 | 98 | Adrian Georgescu | * RLS Services [http://www.tools.ietf.org/html/rfc4826 RFC4826] |
103 | 1 | Adrian Georgescu | * PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827] |
104 | 1 | Adrian Georgescu | * XCAP Diff [http://www.ietf.org/internet-drafts/draft-ietf-simple-xcap-diff-09.txt draft-ietf-simple-xcap-diff-09] |
105 | 1 | Adrian Georgescu | * OMA specification ''org.openmobilealliance.xcap-directory'' |
106 | 1 | Adrian Georgescu | * OMA specification ''oma_status.icon'' |