SipFeatures

Version 47 (Adrian Georgescu, 03/22/2009 01:15 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 47 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. an 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 44 Adrian Georgescu
 * Event driven high level API
14 36 Adrian Georgescu
 * Low level components API
15 40 Adrian Georgescu
 * Multiple SIP accounts support inclusive server-less Bonjour mode
16 45 Adrian Georgescu
 * Compatible with both Peer-To-Peer (P2P) and Client/Server environments
17 36 Adrian Georgescu
 * Multiple active session support
18 39 Adrian Georgescu
 * Multiple media types per session (e.g. audio + Instant Messaging + desktop sharing)
19 38 Adrian Georgescu
 * NAT traversal support (both client side using STUN and ICE and server side using rport and relays)
20 36 Adrian Georgescu
 * Compatible with functionality of OpenSIPS and OpenXCAP servers
21 26 Adrian Georgescu
 * Cross platform (Linux, OSX, Windows)
22 41 Adrian Georgescu
 * Trace capability for all underlying protocols
23 26 Adrian Georgescu
24 26 Adrian Georgescu
== SIP transport ==
25 34 Adrian Georgescu
26 22 Adrian Georgescu
 * UDP/TCP/TLS transports
27 46 Adrian Georgescu
 * RFC 3263 next hop resolution lookup
28 46 Adrian Georgescu
 * Other lookup mechanisms can be easily added
29 22 Adrian Georgescu
30 20 Adrian Georgescu
== SDP negotiation ==
31 20 Adrian Georgescu
32 20 Adrian Georgescu
Supported media types:
33 21 Adrian Georgescu
34 23 Adrian Georgescu
 * Audio (with or without ICE and STUN)
35 23 Adrian Georgescu
 * Instant messaging over MSRP (with or without MSRP relay support)
36 23 Adrian Georgescu
 * File transfer over MSRP (with or without MSRP relay support)
37 20 Adrian Georgescu
 * Desktop sharing (VNC over MSRP)
38 31 Adrian Georgescu
39 20 Adrian Georgescu
Except for MSRP file transfer, all media types can be combined together in the same session.
40 22 Adrian Georgescu
41 37 Adrian Georgescu
== SIP Methods  ==
42 30 Adrian Georgescu
43 1 Adrian Georgescu
 * REGISTER
44 1 Adrian Georgescu
 * INVITE
45 1 Adrian Georgescu
 * PRACK
46 1 Adrian Georgescu
 * ACK
47 34 Adrian Georgescu
 * BYE
48 9 Adrian Georgescu
 * re-INVITE (hold/un-hold, adding and removing other media types)
49 29 Adrian Georgescu
 * CANCEL
50 29 Adrian Georgescu
 * MESSAGE
51 29 Adrian Georgescu
 * PUBLISH
52 3 Adrian Georgescu
 * SUBSCRIBE
53 1 Adrian Georgescu
 * NOTIFY
54 4 Adrian Georgescu
 * OPTIONS
55 3 Adrian Georgescu
   
56 6 Adrian Georgescu
== Audio ==
57 1 Adrian Georgescu
58 3 Adrian Georgescu
 * Echo cancelation control
59 6 Adrian Georgescu
 * Hold/On-hold
60 13 Adrian Georgescu
 * DTMF
61 3 Adrian Georgescu
 * Codecs: speex (wideband), g711, ilbc, gsm, g722
62 18 Adrian Georgescu
 * sRTP
63 3 Adrian Georgescu
64 1 Adrian Georgescu
== Presence ==
65 3 Adrian Georgescu
66 1 Adrian Georgescu
 * Rich presence data model [http://tools.ietf.org/html/rfc3856 RFC3856], [http://tools.ietf.org/html/rfc3863 RFC3863 ], [http://tools.ietf.org/html/rfc4479 RFC4479], [http://tools.ietf.org/html/rfc4481 RFC4481], [http://tools.ietf.org/html/rfc4482 RFC4482], [http://tools.ietf.org/html/rfc5196 RFC5196]
67 1 Adrian Georgescu
 * Presence watcher-info event package [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858]
68 1 Adrian Georgescu
 * XCAP protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825]
69 1 Adrian Georgescu
 * XCAP presence rules [http://www.tools.ietf.org/html/rfc5025 RFC5025]
70 1 Adrian Georgescu
 * XCAP resource-lists and RLS-services [http://www.tools.ietf.org/html/rfc4826 RFC4826]
71 1 Adrian Georgescu
 * XCAP PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827]
72 16 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]
73 3 Adrian Georgescu
 * TCP and TLS transports
74 3 Adrian Georgescu
 * XCAP trace capability
75 3 Adrian Georgescu
76 1 Adrian Georgescu
== MSRP ==
77 1 Adrian Georgescu
78 1 Adrian Georgescu
 * MSRP protocol [http://tools.ietf.org/html/rfc4975 RFC4975]
79 1 Adrian Georgescu
 * MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976]
80 1 Adrian Georgescu
 * MSRP file transfer [http://tools.ietf.org/html/draft-ietf-mmusic-file-transfer-mech-11 draft-ietf-mmusic-file-transfer-mech-11]
81 16 Adrian Georgescu
 * Message summary event package [http://tools.ietf.org/html/rfc3842 RFC3842]
82 3 Adrian Georgescu
 * TCP and TLS transports
83 3 Adrian Georgescu
 * MSRP trace capability
84 3 Adrian Georgescu
85 3 Adrian Georgescu
== Conferencing ==
86 3 Adrian Georgescu
87 3 Adrian Georgescu
 * Conference event package [http://tools.ietf.org/html/rfc4575 RFC4575]
88 7 Adrian Georgescu
 * MSRP ad-hoc multi-party chat sessions [http://tools.ietf.org/html/draft-ietf-simple-chat-03 draft-ietf-simple-chat-03]
89 22 Adrian Georgescu
90 11 Adrian Georgescu
== Other ==
91 1 Adrian Georgescu
92 1 Adrian Georgescu
 * Desktop sharing, variation of [http://tools.ietf.org/html/draft-garcia-mmusic-sdp-collaboration-00 draft-garcia-mmusic-sdp-collaboration-00]
93 1 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]