Project

General

Profile

SipFeatures » History » Version 53

Adrian Georgescu, 03/26/2009 10:55 AM

1 24 Adrian Georgescu
= Library features =
2 1 Adrian Georgescu
3 2 Adrian Georgescu
[[TOC(WikiStart, Sip*, depth=2)]]
4
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
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
 * Non-blocking at all levels
15
 * Fail-over for DNS lookups, SIP next hop routing and MSRP relay reservation 
16 48 Adrian Georgescu
 * Multiple SIP accounts support
17 36 Adrian Georgescu
 * Multiple media types per session (e.g. audio + Instant Messaging + desktop sharing)
18 53 Adrian Georgescu
 * Multiple active session support with add/remove of media within same session
19
 * Compatible with SIP SIMPLE functionality of OpenSIPS and OpenXCAP servers
20 26 Adrian Georgescu
 * Cross platform (Linux, OSX, Windows)
21 1 Adrian Georgescu
 * Trace capability for all underlying protocols
22 50 Adrian Georgescu
23
== NAT traversal ==
24
25
The client library support best NAT traversal techniques available today:
26
27
 * Client side support by using STUN and ICE
28
 * Server side support by using rport and media relays
29 51 Adrian Georgescu
 * Symmetric media (same port for sending and receiving media) 
30 52 Adrian Georgescu
 * Keep-alive
31 26 Adrian Georgescu
32
== SIP transport ==
33 34 Adrian Georgescu
34 22 Adrian Georgescu
 * UDP/TCP/TLS transports
35 46 Adrian Georgescu
 * RFC 3263 next hop resolution lookup
36
 * Other lookup mechanisms can be easily added
37 22 Adrian Georgescu
38 20 Adrian Georgescu
== SDP negotiation ==
39
40
Supported media types:
41 21 Adrian Georgescu
42 23 Adrian Georgescu
 * Audio (with or without ICE and STUN)
43
 * Instant messaging over MSRP (with or without MSRP relay support)
44
 * File transfer over MSRP (with or without MSRP relay support)
45 20 Adrian Georgescu
 * Desktop sharing (VNC over MSRP)
46 31 Adrian Georgescu
47 20 Adrian Georgescu
Except for MSRP file transfer, all media types can be combined together in the same session.
48 22 Adrian Georgescu
49 37 Adrian Georgescu
== SIP Methods  ==
50 30 Adrian Georgescu
51 1 Adrian Georgescu
 * REGISTER
52
 * INVITE
53
 * PRACK
54
 * ACK
55 34 Adrian Georgescu
 * BYE
56 9 Adrian Georgescu
 * re-INVITE (hold/un-hold, adding and removing other media types)
57 29 Adrian Georgescu
 * CANCEL
58
 * MESSAGE
59
 * PUBLISH
60 3 Adrian Georgescu
 * SUBSCRIBE
61 1 Adrian Georgescu
 * NOTIFY
62 4 Adrian Georgescu
 * OPTIONS
63 3 Adrian Georgescu
   
64 6 Adrian Georgescu
== Audio ==
65 1 Adrian Georgescu
66 3 Adrian Georgescu
 * Echo cancelation control
67 6 Adrian Georgescu
 * Hold/On-hold
68 13 Adrian Georgescu
 * DTMF
69 3 Adrian Georgescu
 * Codecs: speex (wideband), g711, ilbc, gsm, g722
70 18 Adrian Georgescu
 * sRTP
71 3 Adrian Georgescu
72 1 Adrian Georgescu
== Presence ==
73 3 Adrian Georgescu
74 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]
75
 * Presence watcher-info event package [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858]
76
 * XCAP protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825]
77
 * XCAP presence rules [http://www.tools.ietf.org/html/rfc5025 RFC5025]
78
 * XCAP resource-lists and RLS-services [http://www.tools.ietf.org/html/rfc4826 RFC4826]
79
 * XCAP PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827]
80 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]
81 3 Adrian Georgescu
 * TCP and TLS transports
82
 * XCAP trace capability
83
84 1 Adrian Georgescu
== MSRP ==
85
86
 * MSRP protocol [http://tools.ietf.org/html/rfc4975 RFC4975]
87
 * MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976]
88
 * MSRP file transfer [http://tools.ietf.org/html/draft-ietf-mmusic-file-transfer-mech-11 draft-ietf-mmusic-file-transfer-mech-11]
89 16 Adrian Georgescu
 * Message summary event package [http://tools.ietf.org/html/rfc3842 RFC3842]
90 3 Adrian Georgescu
 * TCP and TLS transports
91
 * MSRP trace capability
92
93
== Conferencing ==
94
95
 * Conference event package [http://tools.ietf.org/html/rfc4575 RFC4575]
96 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]
97 22 Adrian Georgescu
98 11 Adrian Georgescu
== Other ==
99 1 Adrian Georgescu
100
 * Desktop sharing, variation of [http://tools.ietf.org/html/draft-garcia-mmusic-sdp-collaboration-00 draft-garcia-mmusic-sdp-collaboration-00]
101
 * Bonjour multicast DNS [http://www.ietf.org/internet-drafts/draft-lee-sip-dns-sd-uri-03.txt draft-lee-sip-dns-sd-uri-03]