SipFeatures

Version 69 (Adrian Georgescu, 07/04/2009 10:11 pm)

1 24 Adrian Georgescu
= Library features =
2 1 Adrian Georgescu
3 2 Adrian Georgescu
[[TOC(WikiStart, Sip*, depth=2)]]
4 2 Adrian Georgescu
5 43 Adrian Georgescu
This library implements RTP audio sessions (VoIP), session based Instant Messaging (IM), file transfer and multi-party chat sessions using MSRP protocol and its relay extension, publication and subscription for rich presence information such as availability, moods, activities and geo-location, management for the presence rules, resource lists, RLS services documents using XCAP protocol.
6 2 Adrian Georgescu
7 49 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).
8 47 Adrian Georgescu
9 47 Adrian Georgescu
10 26 Adrian Georgescu
== General  ==
11 1 Adrian Georgescu
12 26 Adrian Georgescu
 * Written in Python language
13 53 Adrian Georgescu
 * High level event driven  API and low level components API
14 61 Adrian Georgescu
 * TLS security for both signaling (SIP) and media planes (MSRP, XCAP)
15 54 Adrian Georgescu
 * Non-blocking design for all components
16 53 Adrian Georgescu
 * Fail-over for DNS lookups, SIP next hop routing and MSRP relay reservation 
17 48 Adrian Georgescu
 * Multiple SIP accounts support
18 36 Adrian Georgescu
 * Multiple media types per session (e.g. audio + Instant Messaging + desktop sharing)
19 53 Adrian Georgescu
 * Multiple active session support with add/remove of media within same session
20 53 Adrian Georgescu
 * Compatible with SIP SIMPLE functionality of OpenSIPS and OpenXCAP servers
21 26 Adrian Georgescu
 * Cross platform (Linux, OSX, Windows)
22 1 Adrian Georgescu
 * Trace capability for all underlying protocols
23 50 Adrian Georgescu
24 61 Adrian Georgescu
== SIP transport ==
25 61 Adrian Georgescu
26 69 Adrian Georgescu
 * Session Initiation Protocol [http://tools.ietf.org/html/rfc3261 RFC3261] 
27 1 Adrian Georgescu
28 1 Adrian Georgescu
== SDP negotiation ==
29 1 Adrian Georgescu
30 69 Adrian Georgescu
 * Session Description Protocol [http://tools.ietf.org/html/rfc4566 RFC4566] 
31 69 Adrian Georgescu
 * An Offer/Answer Model with Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc4566 RFC4566] 
32 69 Adrian Georgescu
33 1 Adrian Georgescu
Supported media types:
34 1 Adrian Georgescu
35 1 Adrian Georgescu
 * Audio (with or without ICE and STUN)
36 1 Adrian Georgescu
 * Instant messaging over MSRP (with or without MSRP relay support)
37 1 Adrian Georgescu
 * File transfer over MSRP (with or without MSRP relay support)
38 1 Adrian Georgescu
 * Desktop sharing (VNC over MSRP)
39 46 Adrian Georgescu
40 67 Adrian Georgescu
All media can be combined together in the same SIP session.
41 1 Adrian Georgescu
42 69 Adrian Georgescu
== Location discovery ==
43 20 Adrian Georgescu
44 69 Adrian Georgescu
 * [http://tools.ietf.org/html/rfc3263 RFC3263] next hop resolution lookup
45 69 Adrian Georgescu
 * Bonjour multicast DNS [http://www.ietf.org/internet-drafts/draft-lee-sip-dns-sd-uri-03.txt draft-lee-sip-dns-sd-uri-03]
46 69 Adrian Georgescu
 * Other lookup mechanisms can be easily added (e.g. P2PSIP)
47 69 Adrian Georgescu
48 69 Adrian Georgescu
== NAT traversal ==
49 69 Adrian Georgescu
50 69 Adrian Georgescu
The client library support best NAT traversal techniques available today:
51 69 Adrian Georgescu
52 69 Adrian Georgescu
 * STUN - Simple Traversal of User Datagram Protocol (UDP) Through Network Address Translators (NATs)  [http://tools.ietf.org/html/rfc3489 RFC3489]
53 69 Adrian Georgescu
 * Interactive Connectivity Establishment (ICE): A Methodology for Network Address Translator (NAT) Traversal for Offer/Answer Protocols  [http://www.ietf.org/internet-drafts/draft-ietf-mmusic-ice-19.txt draft-ietf-mmusic-ice-19]
54 69 Adrian Georgescu
 * Server side support by using rport and media relays
55 69 Adrian Georgescu
 * Symmetric Response Routing Symmetric media [http://tools.ietf.org/html/rfc3581 RFC3581]
56 69 Adrian Georgescu
 * Keep-alive
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 69 Adrian Georgescu
 * Real Time Control Protocol (RTCP) attribute in Session Description Protocol (SDP) [http://tools.ietf.org/html/rfc3605 RFC3605]
62 69 Adrian Georgescu
 * Generation and parsing of RFC 2833/telephone-events payload in both RTP and SDP [http://tools.ietf.org/html/rfc2833 RFC2833]
63 69 Adrian Georgescu
 * The Secure Real-time Transport Protocol (SRTP)  [http://tools.ietf.org/html/rfc3711 RFC3711]
64 6 Adrian Georgescu
 * Echo cancelation control
65 3 Adrian Georgescu
 * Hold/On-hold
66 69 Adrian Georgescu
 * Tone generator
67 3 Adrian Georgescu
 * RTP timeout detection
68 18 Adrian Georgescu
 * Codecs: speex, g711, ilbc, gsm, g722
69 65 Adrian Georgescu
70 55 Adrian Georgescu
== Presence ==
71 3 Adrian Georgescu
72 69 Adrian Georgescu
 * SIP Specific Event Notification [http://tools.ietf.org/html/rfc3265 RFC3265]
73 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]
74 63 Adrian Georgescu
 * Rich presence extensions [http://tools.ietf.org/html/rfc4480 RFC4480], [http://tools.ietf.org/html/rfc4481 RFC4481], [http://tools.ietf.org/html/rfc4482 RFC4482], [http://tools.ietf.org/html/rfc5196 RFC5196]
75 66 Adrian Georgescu
 * Watcher-info [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858]
76 64 Adrian Georgescu
 * Policy [http://www.tools.ietf.org/html/rfc4745 RFC4745]  
77 64 Adrian Georgescu
 * XCAP protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825]
78 1 Adrian Georgescu
 * Presence rules [http://www.tools.ietf.org/html/rfc5025 RFC5025]
79 63 Adrian Georgescu
 * Resource-lists [http://www.tools.ietf.org/html/rfc4826 RFC4826]
80 63 Adrian Georgescu
 * RLS-services [http://www.tools.ietf.org/html/rfc4826 RFC4826]
81 63 Adrian Georgescu
 * PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827]
82 63 Adrian Georgescu
 * xcap-diff [http://www.ietf.org/internet-drafts/draft-ietf-simple-xcap-diff-09.txt draft-ietf-simple-xcap-diff-09]
83 68 Adrian Georgescu
84 58 Adrian Georgescu
== Instant Messaging ==
85 1 Adrian Georgescu
86 69 Adrian Georgescu
 * Session Initiation Protocol (SIP) Extension for Instant Messaging  [http://tools.ietf.org/html/rfc3428 RFC3428]
87 1 Adrian Georgescu
 * MSRP protocol [http://tools.ietf.org/html/rfc4975 RFC4975]
88 1 Adrian Georgescu
 * MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976]
89 69 Adrian Georgescu
 * Indication of Message Composition for Instant Messaging [http://tools.ietf.org/html/rfc3994 RFC3994]
90 1 Adrian Georgescu
91 58 Adrian Georgescu
== File transfer ==
92 58 Adrian Georgescu
93 60 Adrian Georgescu
 * MSRP file transfer [http://tools.ietf.org/html/rfc5547 RFC5547]
94 3 Adrian Georgescu
95 3 Adrian Georgescu
== Conferencing ==
96 3 Adrian Georgescu
97 57 Adrian Georgescu
 * Conference event package [http://tools.ietf.org/html/rfc4575 RFC4575]
98 22 Adrian Georgescu
 * MSRP ad-hoc multi-party chat sessions [http://tools.ietf.org/html/draft-ietf-simple-chat-04 draft-ietf-simple-chat-04]
99 11 Adrian Georgescu
100 1 Adrian Georgescu
== Other ==
101 1 Adrian Georgescu
102 1 Adrian Georgescu
 * Desktop sharing, variation of [http://tools.ietf.org/html/draft-garcia-mmusic-sdp-collaboration-00 draft-garcia-mmusic-sdp-collaboration-00]
103 65 Adrian Georgescu
 * Message summary event package [http://tools.ietf.org/html/rfc3842 RFC3842]