Changes between Version 14 and Version 15 of SIP-Media-NAT-Traversal-Features
- Timestamp:
- Jun 10, 2010 3:22:29 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SIP-Media-NAT-Traversal-Features
v14 v15 81 81 82 82 In addition, application can define their own SIP methods during run-time without needing to recompile the stack (so probably this means support for INFO as well). 83 SIP Headers 83 ==== SIP Headers ==== 84 84 85 85 The core stack correctly generates, parses, interprets, and handles the following headers: … … 98 98 99 99 In addition, application can create their own custom SIP headers when sending any requests/responses. 100 Transports100 ==== Transports ==== 101 101 102 102 The core SIP stack provides transport layer and extensible transport management, with the following transports are provided: … … 109 109 110 110 DNS SRV resolution is implemented in the library. 111 Transactions111 ==== Transactions ==== 112 112 113 113 The SIP core stack fully implement SIP transaction and SIP transaction finite state machine (FSM), which handles: … … 117 117 * fail-over to secondary transport destination (according to rules in RFC 3261) when the transport layer fails to deliver a message to current destination. 118 118 119 Dialog Core119 ==== Dialog Core ==== 120 120 121 121 The SIP core stack (via the user agent layer) implements the core dialog management which will be used by upper layer functionality such as INVITE session and SIP event session (SUBSCRIBE/NOTIFY). 122 122 123 123 The core dialog framework supports multiple sessions (or dialog usages) in a single dialog, and also handles forked responses. 124 INVITE Session 124 ==== INVITE Session ==== 125 125 126 126 PJSIP provides high-level INVITE session management in pjsip-ua library, which: … … 131 131 * provides mechanism to plug-in SIP extensions related to INVITE session (such as PRACK, UPDATE, or session-timer). 132 132 133 Authentication133 ==== Authentication ==== 134 134 135 135 The SIP core stack provides reusable component for performing client authentication and managing client authentication session.