Project

General

Profile

SipFeatures » History » Version 58

Adrian Georgescu, 04/04/2009 07:58 PM

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