SipFeatures

Version 64 (Adrian Georgescu, 06/01/2009 11:41 am)

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 50 Adrian Georgescu
== NAT traversal ==
25 50 Adrian Georgescu
26 50 Adrian Georgescu
The client library support best NAT traversal techniques available today:
27 50 Adrian Georgescu
28 50 Adrian Georgescu
 * Client side support by using STUN and ICE
29 50 Adrian Georgescu
 * Server side support by using rport and media relays
30 51 Adrian Georgescu
 * Symmetric media (same port for sending and receiving media) 
31 52 Adrian Georgescu
 * Keep-alive
32 1 Adrian Georgescu
33 61 Adrian Georgescu
== Location discovery ==
34 61 Adrian Georgescu
35 61 Adrian Georgescu
 * RFC 3263 next hop resolution lookup
36 61 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]
37 61 Adrian Georgescu
 * Other lookup mechanisms can be easily added (e.g. P2PSIP)
38 61 Adrian Georgescu
39 22 Adrian Georgescu
== SIP transport ==
40 46 Adrian Georgescu
41 46 Adrian Georgescu
 * UDP/TCP/TLS transports
42 22 Adrian Georgescu
43 20 Adrian Georgescu
== SDP negotiation ==
44 20 Adrian Georgescu
45 20 Adrian Georgescu
Supported media types:
46 21 Adrian Georgescu
47 23 Adrian Georgescu
 * Audio (with or without ICE and STUN)
48 23 Adrian Georgescu
 * Instant messaging over MSRP (with or without MSRP relay support)
49 23 Adrian Georgescu
 * File transfer over MSRP (with or without MSRP relay support)
50 20 Adrian Georgescu
 * Desktop sharing (VNC over MSRP)
51 31 Adrian Georgescu
52 20 Adrian Georgescu
Except for MSRP file transfer, all media types can be combined together in the same session.
53 22 Adrian Georgescu
54 37 Adrian Georgescu
== SIP Methods  ==
55 30 Adrian Georgescu
56 1 Adrian Georgescu
 * REGISTER
57 1 Adrian Georgescu
 * INVITE
58 1 Adrian Georgescu
 * PRACK
59 1 Adrian Georgescu
 * ACK
60 34 Adrian Georgescu
 * BYE
61 9 Adrian Georgescu
 * re-INVITE (hold/un-hold, adding and removing other media types)
62 29 Adrian Georgescu
 * CANCEL
63 29 Adrian Georgescu
 * MESSAGE
64 29 Adrian Georgescu
 * PUBLISH
65 3 Adrian Georgescu
 * SUBSCRIBE
66 1 Adrian Georgescu
 * NOTIFY
67 4 Adrian Georgescu
 * OPTIONS
68 3 Adrian Georgescu
   
69 6 Adrian Georgescu
== Audio ==
70 1 Adrian Georgescu
71 3 Adrian Georgescu
 * Echo cancelation control
72 6 Adrian Georgescu
 * Hold/On-hold
73 62 Adrian Georgescu
 * RTP timeout detection
74 13 Adrian Georgescu
 * DTMF
75 3 Adrian Georgescu
 * Codecs: speex (wideband), g711, ilbc, gsm, g722
76 18 Adrian Georgescu
 * sRTP
77 55 Adrian Georgescu
 * zRTP
78 55 Adrian Georgescu
 * Message summary event package [http://tools.ietf.org/html/rfc3842 RFC3842]
79 3 Adrian Georgescu
80 1 Adrian Georgescu
== Presence ==
81 3 Adrian Georgescu
82 63 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]
83 63 Adrian Georgescu
 * Rich presence [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]
84 64 Adrian Georgescu
 * Watcher-info [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858]
85 64 Adrian Georgescu
 * Policy [http://www.tools.ietf.org/html/rfc4745 RFC4745]  
86 1 Adrian Georgescu
 * XCAP protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825]
87 63 Adrian Georgescu
 * Presence rules [http://www.tools.ietf.org/html/rfc5025 RFC5025]
88 63 Adrian Georgescu
 * Resource-lists [http://www.tools.ietf.org/html/rfc4826 RFC4826]
89 63 Adrian Georgescu
 * RLS-services [http://www.tools.ietf.org/html/rfc4826 RFC4826]
90 63 Adrian Georgescu
 * PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827]
91 1 Adrian Georgescu
 * XCAP-diff event package [http://www.ietf.org/internet-drafts/draft-ietf-simple-xcap-diff-09.txt draft-ietf-simple-xcap-diff-09]
92 58 Adrian Georgescu
93 1 Adrian Georgescu
== Instant Messaging ==
94 1 Adrian Georgescu
95 1 Adrian Georgescu
 * MSRP protocol [http://tools.ietf.org/html/rfc4975 RFC4975]
96 1 Adrian Georgescu
 * MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976]
97 58 Adrian Georgescu
 * Indication of Message Composition for Instant Messaging [http://tools.ietf.org/html/rfc3842 RFC3994]
98 58 Adrian Georgescu
99 58 Adrian Georgescu
== File transfer ==
100 60 Adrian Georgescu
101 3 Adrian Georgescu
 * MSRP file transfer [http://tools.ietf.org/html/rfc5547 RFC5547]
102 3 Adrian Georgescu
103 3 Adrian Georgescu
== Conferencing ==
104 57 Adrian Georgescu
105 22 Adrian Georgescu
 * Conference event package [http://tools.ietf.org/html/rfc4575 RFC4575]
106 11 Adrian Georgescu
 * MSRP ad-hoc multi-party chat sessions [http://tools.ietf.org/html/draft-ietf-simple-chat-04 draft-ietf-simple-chat-04]
107 1 Adrian Georgescu
108 1 Adrian Georgescu
== Other ==
109 1 Adrian Georgescu
110 1 Adrian Georgescu
 * Desktop sharing, variation of [http://tools.ietf.org/html/draft-garcia-mmusic-sdp-collaboration-00 draft-garcia-mmusic-sdp-collaboration-00]