SipFeatures » History » Version 100
Adrian Georgescu, 12/31/2009 10:42 PM
1 | 78 | Adrian Georgescu | = Library Features = |
---|---|---|---|
2 | 1 | Adrian Georgescu | |
3 | 2 | Adrian Georgescu | [[TOC(WikiStart, Sip*, depth=2)]] |
4 | |||
5 | 83 | Adrian Georgescu | SIP SIMPLE client is a Software Development Kit for easy development of Real Time Applications based on SIP and related protocols for Presence, Audio, Instant Messaging (IM), File Transfers and Desktop Sharing. Other media types can be easily added by using an extensible high-level API. |
6 | 49 | Adrian Georgescu | |
7 | 95 | 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. |
8 | 85 | Adrian Georgescu | |
9 | 80 | Adrian Georgescu | == General Features == |
10 | 1 | Adrian Georgescu | |
11 | 96 | Adrian Georgescu | * Written in Python Programming Language |
12 | 97 | Adrian Georgescu | * Non-blocking Asynchronous API |
13 | 94 | Adrian Georgescu | * TLS Security for both signaling (SIP) and media planes (MSRP, XCAP) |
14 | 97 | Adrian Georgescu | * Multiple Media Types per Session (e.g. Audio + Instant Messaging + Desktop Sharing) |
15 | * Trace capability for all underlying protocols |
||
16 | 75 | Adrian Georgescu | |
17 | 1 | 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. |
18 | 94 | Adrian Georgescu | |
19 | == Location Discovery == |
||
20 | 1 | Adrian Georgescu | |
21 | 76 | Adrian Georgescu | * [http://tools.ietf.org/html/rfc3263 RFC3263] next hop resolution lookup |
22 | 98 | Adrian Georgescu | * Bonjour multicast DNS [http://tools.ietf.org/html/draft-lee-sip-dns-sd-uri-03] (work in progress) |
23 | 97 | Adrian Georgescu | * Failover for DNS lookups, SIP next hop routing and MSRP relay reservation |
24 | 75 | Adrian Georgescu | * Other lookup mechanisms can be easily added (e.g. P2PSIP or DHT) |
25 | 92 | Adrian Georgescu | |
26 | 81 | 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). |
27 | 1 | Adrian Georgescu | |
28 | 76 | Adrian Georgescu | == SIP Transport == |
29 | 75 | Adrian Georgescu | |
30 | 97 | Adrian Georgescu | * Multiple SIP Accounts Support |
31 | 94 | Adrian Georgescu | * Automatically handles changes of System IP Address |
32 | 1 | Adrian Georgescu | * Session Initiation Protocol [http://tools.ietf.org/html/rfc3261 RFC3261] |
33 | * Support for UDP, TCP and TLS transports |
||
34 | |||
35 | == SDP Negotiation == |
||
36 | |||
37 | 69 | Adrian Georgescu | * Session Description Protocol [http://tools.ietf.org/html/rfc4566 RFC4566] |
38 | * An Offer/Answer Model with Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc4566 RFC4566] |
||
39 | 1 | Adrian Georgescu | * Support of re-INVITE for adding and removing media streams |
40 | |||
41 | 46 | Adrian Georgescu | Supported media types: |
42 | 67 | Adrian Georgescu | |
43 | 94 | Adrian Georgescu | * Audio/VoIP (RTP/sRTP with or without ICE and STUN) |
44 | * Instant Messaging over MSRP (with or without MSRP relay support) |
||
45 | * File Transfer over MSRP (with or without MSRP relay support) |
||
46 | * Desktop Sharing (VNC over MSRP) |
||
47 | 71 | Adrian Georgescu | |
48 | 94 | Adrian Georgescu | All media types can be combined together in the same SIP session. |
49 | 69 | Adrian Georgescu | |
50 | 76 | Adrian Georgescu | == NAT Traversal == |
51 | 69 | Adrian Georgescu | |
52 | 94 | Adrian Georgescu | The client library supports the best NAT traversal techniques available today: |
53 | 69 | Adrian Georgescu | |
54 | 1 | Adrian Georgescu | * SIP Signaling: Symmetric Response Routing Symmetric media [http://tools.ietf.org/html/rfc3581 RFC3581] and Keep-alive |
55 | 88 | Adrian Georgescu | * Audio: STUN - Simple Traversal of User Datagram Protocol (UDP) Through Network Address Translators (NATs) [http://tools.ietf.org/html/rfc3489 RFC3489] and Interactive Connectivity Establishment (ICE): A Methodology for NAT Traversal for Offer/Answer Protocols [http://www.ietf.org/internet-drafts/draft-ietf-mmusic-ice-19.txt draft-ietf-mmusic-ice-19] |
56 | * IM and File Transfer: MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976] |
||
57 | 69 | Adrian Georgescu | |
58 | 65 | Adrian Georgescu | == Audio == |
59 | 1 | Adrian Georgescu | |
60 | 69 | Adrian Georgescu | * A Transport Protocol for Real-Time Applications [http://tools.ietf.org/html/rfc3550 RFC3550] |
61 | * Real Time Control Protocol (RTCP) attribute in Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc3605 RFC3605] |
||
62 | * Generation and parsing of RFC 2833/telephone-events payload in both RTP and SDP [http://tools.ietf.org/html/rfc2833 RFC2833] |
||
63 | 1 | Adrian Georgescu | * The Secure Real-time Transport Protocol (SRTP) [http://tools.ietf.org/html/rfc3711 RFC3711] |
64 | 96 | Adrian Georgescu | * Echo Cancelation Control |
65 | 77 | Adrian Georgescu | * Hold |
66 | 96 | Adrian Georgescu | * Conference Bridge |
67 | * Wav Player and Recorder |
||
68 | * RTP Timeout Detection |
||
69 | * Codecs: Speex, g711, ilbc, gsm, g722 |
||
70 | 65 | Adrian Georgescu | |
71 | 55 | Adrian Georgescu | == Presence == |
72 | 3 | Adrian Georgescu | |
73 | 99 | Adrian Georgescu | All server-side features have been built-in and tested with [http://opensips.org OpenSIPS] Presence Agent. |
74 | 91 | Adrian Georgescu | |
75 | 69 | Adrian Georgescu | * SIP Specific Event Notification [http://tools.ietf.org/html/rfc3265 RFC3265] |
76 | 3 | 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] |
77 | 66 | Adrian Georgescu | * Watcher-info [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858] |
78 | 1 | Adrian Georgescu | * Policy [http://www.tools.ietf.org/html/rfc4745 RFC4745] |
79 | 100 | Adrian Georgescu | * Rich presence extensions [http://tools.ietf.org/html/rfc4480 RFC4480] |
80 | * Contact Information for the Presence Information Data Format [http://tools.ietf.org/html/rfc4482 RFC4482] |
||
81 | * User Agent Capability Extension to Presence Information Data Format [http://tools.ietf.org/html/rfc5196 RFC5196] |
||
82 | * Timed Presence Extensions [http://tools.ietf.org/html/rfc4481 RFC4481] (work in progress) |
||
83 | 89 | Adrian Georgescu | |
84 | == XCAP == |
||
85 | 91 | Adrian Georgescu | |
86 | 99 | Adrian Georgescu | All server-side features have been built-in and tested with [http://openxcap.org OpenXCAP] server. |
87 | 89 | Adrian Georgescu | |
88 | 64 | Adrian Georgescu | * XCAP protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825] |
89 | 1 | Adrian Georgescu | * Presence rules [http://www.tools.ietf.org/html/rfc5025 RFC5025] |
90 | 98 | Adrian Georgescu | * Dialog-rules (custom application modelled after Presence rules) |
91 | 63 | Adrian Georgescu | * Resource-lists [http://www.tools.ietf.org/html/rfc4826 RFC4826] |
92 | * RLS-services [http://www.tools.ietf.org/html/rfc4826 RFC4826] |
||
93 | 1 | Adrian Georgescu | * PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827] |
94 | * xcap-diff [http://www.ietf.org/internet-drafts/draft-ietf-simple-xcap-diff-09.txt draft-ietf-simple-xcap-diff-09] |
||
95 | 98 | Adrian Georgescu | * OMA specification ''org.openmobilealliance.xcap-directory'' |
96 | * OMA specification ''oma_status.icon'' |
||
97 | 68 | Adrian Georgescu | |
98 | 58 | Adrian Georgescu | == Instant Messaging == |
99 | 1 | Adrian Georgescu | |
100 | 73 | Adrian Georgescu | * Common Presence and Instant Messaging (CPIM): [http://tools.ietf.org/html/rfc3862 RFC 3862] |
101 | 69 | Adrian Georgescu | * Session Initiation Protocol (SIP) Extension for Instant Messaging [http://tools.ietf.org/html/rfc3428 RFC3428] |
102 | 1 | Adrian Georgescu | * MSRP protocol [http://tools.ietf.org/html/rfc4975 RFC4975] |
103 | * Indication of Message Composition for Instant Messaging [http://tools.ietf.org/html/rfc3994 RFC3994] |
||
104 | * Message summary event package [http://tools.ietf.org/html/rfc3842 RFC3842] (not implemented yet) |
||
105 | |||
106 | 77 | Adrian Georgescu | == File Transfer == |
107 | 1 | Adrian Georgescu | |
108 | 98 | Adrian Georgescu | * MSRP file transfer [http://tools.ietf.org/html/rfc5547 RFC5547] |
109 | 1 | Adrian Georgescu | |
110 | 77 | Adrian Georgescu | == Desktop Sharing == |
111 | 1 | Adrian Georgescu | |
112 | * Variation of [http://tools.ietf.org/html/draft-garcia-mmusic-sdp-collaboration-00 draft-garcia-mmusic-sdp-collaboration-00] using RFB over MSRP |
||
113 | 76 | Adrian Georgescu | |
114 | 1 | Adrian Georgescu | == Conferencing == |
115 | |||
116 | 98 | Adrian Georgescu | * Conference event package [http://tools.ietf.org/html/rfc4575 RFC4575] (work in progress) |
117 | * 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) |