From 66fd54e33e3d9dd5a950a281deacbf608e365df0 Mon Sep 17 00:00:00 2001 From: Peter Saint-Andre Date: Fri, 1 Aug 2008 03:47:14 +0000 Subject: [PATCH] 0.29 git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@2111 4b5297f7-1745-476d-ba37-a9c6900126ab --- xep-0166.xml | 494 +++++++++++++++++++++++++++++++-------------------- 1 file changed, 301 insertions(+), 193 deletions(-) diff --git a/xep-0166.xml b/xep-0166.xml index ac060527..154997a2 100644 --- a/xep-0166.xml +++ b/xep-0166.xml @@ -10,7 +10,7 @@ This specification defines an XMPP protocol extension for initiating and managing peer-to-peer media sessions between two XMPP entities in a way that is interoperable with existing Internet standards. The protocol provides a pluggable model that enables the core session management semantics to be used for a wide variety of application types (e.g., voice chat, video chat, file sharing) and with a wide variety of transport methods (e.g., TCP, UDP, ICE, application-specific transports). &LEGALNOTICE; 0166 - Proposed + Experimental Standards Track Standards Council @@ -26,6 +26,23 @@ &robmcqueen; &seanegan; &hildjj; + + 0.29 + 2008-07-31 + psa/ram + +
    +
  • Changed "reliable" vs. "lossy" to "stream" vs. "datagram", since reliability or dependability is orthogonal to the streaming nature of the transport.
  • +
  • Deleted the "content-remove" action.
  • +
  • Added "transport-replace" action (answered by "transport-accept").
  • +
  • Removed <condition/> element as container for Jingle condition elements inside <reason/>, since it introduced an unnecessary layer of indirection.
  • +
  • Modified state machine to allow content removal during PENDING state.
  • +
  • Noted that a session can have more than one content instance of the same type.
  • +
  • Noted that the 'name' attribute is unique to a creator.
  • +
  • Changed examples to once again use voice chat instead of file transfer.
  • +
+
+
0.28 2008-06-16 @@ -286,61 +303,98 @@ Romeo Juliet

Naturally, more complex scenarios are probable; such scenarios are described in other specifications, such as XEP-0167 for voice chat.

The simplest flow might happen as follows. The example is that of a file transfer offer, where the transport method is &xep0065;.

- action='session-initiate' - initiator='kingclaudius@shakespeare.lit/castle' - sid='851ba2'> - - - - - This is a test. If this were a real file... - - + initiator='romeo@montague.net/orchard' + sid='a73sjjvkla37jfea'> + + + + + + + + - + ]]> -

The responder immediately acknowledges receipt of the session-initiate.

+

Upon receiving the session-initiate stanza, the responder determines whether it can proceed with the negotiation. If there is no error, the responder acknowledges the session initiation request.

]]> -

The parties would then attempt to negotiate use of the SOCKS5 Bytestreams transport method, as described in XEP-0065.

-

Once the file transfer succeeds, one of the parties terminates the session.

+

After successful transport negotiation (not shown here), the responder accepts the session by sending a session-accept action to the initiator.

+ + + + + + + + + + + + + + ]]> +

And the initiator acknowledges session acceptance:

+ + ]]> +

The initiator and responder would then exchange media using any of the acceptable codecs.

+

Eventually, one of the parties (here the responder) can terminate the sessio.

- - - + + Sorry, gotta go! + ]]> -

The other party then acknowledges termination of the session.

+

The other party then acknowledges termination of the session:

]]> @@ -388,7 +442,7 @@ Romeo Juliet Transport Method - The method for establishing data stream(s) between entities. Possible transports might include ICE-TCP, Raw UDP, inband data, etc. This is the 'how' of the session. In Jingle XML syntax this is the namespace of the &TRANSPORT; element. The transport method defines how to transfer bits from one host to another. Each transport method must specify whether it is lossy (thus suitable for applications where some packet loss is tolerable) or reliable (thus suitable for applications where packet loss is not tolerable). + The method for establishing data stream(s) between entities. Possible transports might include ICE-TCP, Raw UDP, inband data, etc. This is the 'how' of the session. In Jingle XML syntax this is the namespace of the &TRANSPORT; element. The transport method defines how to transfer bits from one host to another. Each transport method must specify whether it is datagram (thus suitable for applications where some packet loss is tolerable) or stream (thus suitable for applications where packet loss is not tolerable). @@ -410,15 +464,15 @@ Romeo Juliet

This document defines the semantics and syntax for overall session management. It also provides pluggable "slots" for application formats and transport methods, which are specified in separate documents.

At the most basic level, the process for initial negotiation of a Jingle session is as follows (i.e., the actions that can be generated during the PENDING state):

    -
  1. One user (the "initator") sends to another user (the "responder") a session request with at least one content type.
  2. +
  3. One user (the "initator") sends to another user (the "responder") a session request with at least one content definition.
  4. If the responder wants to proceed, it acknowledges the session initiation request by sending an IQ result.
  5. -
  6. The parties attempt to set up data transmission over the designated transport method as defined in the relevant specification (e.g., this may involve sending multiple transport-info actions).
  7. -
  8. Optionally, the responder may remove content types via the content-remove action or change the direction of the media flow via the content-modify action.
  9. -
  10. Optionally, either party may send session-info actions (to inform the other party that it is attempting transport negotiation, that its device is ringing, etc.).
  11. +
  12. The parties attempt to set up data transmission over the designated transport method as defined in the relevant specification (e.g., this can involve sending multiple transport-info actions).
  13. +
  14. Optionally, the responder can remove content definitions via the content-remove action or change the direction of the media flow via the content-modify action.
  15. +
  16. Optionally, either party can send session-info actions (to inform the other party that it is attempting transport negotiation, that its device is ringing, etc.).
  17. As soon as the responder determines that data can flow over the designated transport, it sends to the initiator a session-accept action.
  18. The parties start sending data over the transport.
-

After the initial session negotiation has been completed and the session is in the ACTIVE state, the parties can adjust the session definition. This may involve sending the content-modify and content-remove actions (which are allowed while in the PENDING state), but it may also involve sending the content-add and content-replace actions, which are acknowledged via the content-accept action. In addition, certain transport methods allow continued sending of transport-info actions while in the ACTIVE state. And naturally the parties may send session-info actions at any time.

+

After the initial session negotiation has been completed and the session is in the ACTIVE state, the parties can adjust the session definition. This can involve sending the content-modify, content-remove, content-add, and transport-replace actions. In addition, certain transport methods allow continued sending of transport-info actions while in the ACTIVE state. And naturally the parties may send session-info actions at any time.

The state machine for overall session management (i.e., the state per Session ID) is as follows:

@@ -426,34 +480,36 @@ Romeo Juliet | | session-initiate | - | +-----------------------+ - |/ | -PENDING o---------------------+ | - | | content-accept, | | - | | content-modify, | | - | | content-remove, | | - | | content-replace, | | - | | session-info, | | - | | transport-info | | - | +------------------+ | - | | - | session-accept | - | | - ACTIVE o---------------------+ | - | | content-accept, | | - | | content-add, | | - | | content-modify, | | - | | content-remove, | | - | | content-replace, | | - | | session-info, | | - | | transport-info | | - | +------------------+ | - | | - +-------------------------+ - | - | session-terminate - | - o ENDED + | +------------------------+ + |/ | +PENDING o----------------------+ | + | | content-accept, | | + | | content-modify, | | + | | content-remove, | | + | | session-info, | | + | | transport-accept | | + | | transport-info | | + | | transport-replace | | + | +-------------------+ | + | | + | session-accept | + | | + ACTIVE o----------------------+ | + | | content-accept, | | + | | content-add, | | + | | content-modify, | | + | | content-remove, | | + | | session-info, | | + | | transport-accept | | + | | transport-info | | + | | transport-replace | | + | +-------------------+ | + | | + +--------------------------+ + | + | session-terminate + | + o ENDED

There are three overall session states:

    @@ -469,23 +525,19 @@ PENDING o---------------------+ | content-accept - Accept a content-add or content-replace action received from another party. + Accept a content-add action received from another party. content-add - Add one or more new content types to the session. The sender MUST specify only the added content-type(s), not the added content-type(s) plus the existing content-type(s). Therefore it is the responsibility of the recipient to maintain a local copy of the current content type definition. This action MUST NOT be sent while the session is in the PENDING state. When a party sends a content-add, it MUST ignore any actions received from the other party until it receives acknowledgement of the content-add. If the recipient wishes to include the new content type in the session, it MUST send a content-accept action to the other party. In the event that a session contains two unidirectional streams of the same type because a content-add was issued simultaneously by both parties, it is RECOMMENDED that participants close the duplicate stream in favor of that created by the session initiator, which should be made bidirectional via a content-modify action sent by the responder. + Add one or more new content definitions to the session. The sender MUST specify only the added content definition(s), not the added content definition(s) plus the existing content definition(s). Therefore it is the responsibility of the recipient to maintain a local copy of the current content definition(s). This action MUST NOT be sent while the session is in the PENDING state. If the recipient wishes to include the new content definition in the session, it MUST send a content-accept action to the other party. In the event that a session contains two unidirectional streams of the same definition because a content-add was issued simultaneously by both parties, it is RECOMMENDED that participants close the duplicate stream in favor of that created by the session initiator, which should be made bidirectional via a content-modify action sent by the responder. content-modify - Change the direction of an existing content type thorugh modification of the 'senders' attribute. The recipient MUST NOT reply to a content-modify action with another content-modify action and MUST NOT send a content-accept action in response to the content-modify (but MAY terminate the session if the new directionality is unacceptable, or MAY simply refuse to send or accept application data in the new direction). If both parties send content-modify actions at the same time, the content-modify from the session initiator MUST trump the content-modify from the recipient and the initiator SHOULD return an &unexpected; error to the other party. + Change the direction of an existing content definition thorugh modification of the 'senders' attribute. If the recipient deems the directionality of a content-modify action to be unacceptable, it MAY reply with a contrary content-modify action, terminate the session, or simply refuse to send or accept application data in the new direction. In any case, the recipient MUST NOT send a content-accept action in response to the content-modify. If both parties send content-modify actions at the same time, the content-modify from the session initiator MUST trump the content-modify from the recipient and the initiator SHOULD return an &unexpected; error to the other party. content-remove - Remove one or more content types from the session. The sender MUST specify only the removed content-type(s), not the removed content-type(s) plus the remaining content-type(s). Therefore it is the responsibility of the recipient to maintain a local copy of the current content type definition. Upon receiving a content-remove from the other party, the recipient MUST NOT send a content-accept and MUST NOT continue to negotiate the transport method related to that content type or send application data related to that content type. The recipient MUST NOT send a content-accept in response to a content-remove. A client MUST NOT return an error upon receipt of a 'content-remove' action for a content type that is received after a 'content-remove' action has been sent but before the action has been acknowledged by the peer. If the content-remove results in zero content types for the session, the entity that receives the content-remove SHOULD send a session-terminate action to the other party (since a session with no content types is void). - - - content-replace - Replace the definition of a content type with a new definition; essentially this functions as a simultaneous content-remove and content-add. The application type MUST NOT change but the definition of the application type MAY be modified (e.g., a file offer may be modified to a file request). In order to handle fallback scenarios, the transport method MAY be changed (e.g., from &xep0065; to &xep0047;) or the definition of the existing method MAY be modified. The sender MUST specify only one replaced content-type, not any existing content-type that shall not been replaced. Therefore it is the responsibility of the recipient to maintain a local copy of the current content type definitions. When a party sends a content-replace, it MUST ignore any content-replace action it may receive from the other party with regard to the same content type until it receives acknowledgement of the content-replace. If the recipient wishes to include the replaced content type in the session, it MUST send a content-accept action to the other party. If both parties send content-replace actions at the same time with regard to the same content type, the content-replace from the session initiator MUST trump the content-replace from the recipient and the initiator SHOULD return an &unexpected; error to the other party. + Remove one or more content definitions from the session. The sender MUST specify only the removed content definition(s), not the removed content definition(s) plus the remaining content definition(s). Therefore it is the responsibility of the recipient to maintain a local copy of the current content definition(s). Upon receiving a content-remove from the other party, the recipient MUST NOT send a content-accept and MUST NOT continue to negotiate the transport method related to that content definition or send application data related to that content definition. The recipient MUST NOT send a content-accept in response to a content-remove. A client MUST NOT return an error upon receipt of a 'content-remove' action for a content definition that is received after a 'content-remove' action has been sent but before the action has been acknowledged by the peer. If the content-remove results in zero content definitions for the session, the entity that receives the content-remove SHOULD send a session-terminate action to the other party (since a session with no content definitions is void). session-accept @@ -503,10 +555,22 @@ PENDING o---------------------+ | session-terminate End an existing session. + + transport-accept + + + + transport-accept + Accept a transport-replace action received from another party. + transport-info Exchange transport candidates; it is mainly used in XEP-0176 but may be used in other transport specifications. + + transport-replace + Redefine a transport method. + @@ -518,27 +582,24 @@ PENDING o---------------------+ |

    Once the initiator has discovered which of the responder's XMPP resources is ideal for the desired application format, it sends a session initiation request to the responder. This request is an IQ-set containing a &JINGLE; element qualified by the 'urn:xmpp:tmp:jingle' namespace &NSNOTE;, where the value of the 'action' attribute is "session-initiate" and where the &JINGLE; element contains one or more &CONTENT; elements. Each &CONTENT; element defines a content type to be transferred during the session, and each &CONTENT; element in turn contains one &DESCRIPTION; child element that specifies a desired application format and one &TRANSPORT; child element that specifies a potential transport method. If either party wishes to propose the use of multiple transport methods for the same application format, it must send multiple &CONTENT; elements.

    - action='session-initiate' - initiator='kingclaudius@shakespeare.lit/castle' - sid='851ba2'> - - - - - This is a test. If this were a real file... - - + initiator='romeo@montague.net/orchard' + sid='a73sjjvkla37jfea'> + + + + + + + + - + @@ -546,9 +607,9 @@ PENDING o---------------------+ |

    Note: The syntax and semantics of the &DESCRIPTION; and &TRANSPORT; elements are out of scope for this specification, since they are defined in related specifications. The syntax and semantics of the &JINGLE; and &CONTENT; elements are specified in this document under Formal Definition.

    Note: In order to expedite session establishment, the initiator MAY send transport candidates (e.g., for negotiation of the ICE transport) immediately after sending the session-initiate action and before receiving acknowledgement from the responder (i.e., the initiator MUST consider the session to be PENDING even before receiving acknowledgement). Given in-order delivery, the responder should receive such transport-info actions after receiving the session-initiate action (if not, it is appropriate for the responder to return <unknown-session/> errors since according to its state machine the session does not exist).

    @@ -561,9 +622,9 @@ PENDING o---------------------+ |

    Unless one of the following errors occurs, the responder SHOULD acknowledge receipt of the initiation request.

    ]]>

    However, after acknowledging the session initiation request, the responder may subsequently determine that it cannot proceed with negotiation of the session (e.g., because it does not support any of the offered application formats or transport methods, because a human user is busy or unable to accept the session, because a human user wishes to formally decline the session, etc.). In these cases, the responder SHOULD immediately acknowledge the session initiation request but then terminate the session with an appropriate reason as described in the Termination section of this document.

    @@ -580,9 +641,9 @@ PENDING o---------------------+ |

    If the initiator is unknown to the responder (e.g., via presence subscription as defined in &rfc3921; or stanza session negotiation as defined in &xep0155;) and the responder has a policy of not communicating via Jingle with unknown entities, it SHOULD return a &unavailable; error.

    @@ -591,9 +652,9 @@ PENDING o---------------------+ | ]]>

    If the responder does not support Jingle, it MUST return a &unavailable; error.

    @@ -602,9 +663,9 @@ PENDING o---------------------+ | ]]>

    If the responder wishes to redirect the request to another address, it SHOULD return a &redirect; error.

    @@ -615,9 +676,9 @@ PENDING o---------------------+ | ]]>

    If the responder does not have sufficient resources to participate in a session, it SHOULD return a &constraint; error.

    @@ -626,9 +687,9 @@ PENDING o---------------------+ | ]]>

    If the initiation request was malformed, the responder MUST return a &badrequest; error.

    @@ -643,7 +704,7 @@ PENDING o---------------------+ |
    • Exchanging particular transport candidates via the transport-info action.
    • Modifying the communication direction for a content type via the content-modify action.
    • -
    • Changing the definition of a content type via the content-replace action (e.g., to fall back to a more suitable transport).
    • +
    • Changing the definition of a content type via the transport-replace action (typically to fall back to a more suitable transport).
    • Adding a content type via the content-add action (not allowed in the PENDING state).
    • Removing a content type via the content-remove action (not allowed in the PENDING state).
    @@ -662,86 +723,128 @@ PENDING o---------------------+ |

    The party that terminates the session SHOULD include a <reason/> element that specifies why the session is being terminated. Examples follow.

    One reason for terminating the session is that the terminating party is busy; in this case, the recommended condition is "busy".

    - - - + + + + + + + + + + - ]]> -

    Another reason for terminating the session is that the terminating party wishes to formally decline the session; in this case, the recommended condition is "decline".

    - +

    And the initiator acknowledges session acceptance:

    + + ]]> +

    The initiator and responder would then exchange media using any of the acceptable codecs.

    +

    Eventually, one of the parties (here the responder) can terminate the sessio.

    + - + + + + + ]]> +

    Another reason for terminating the session is that the terminating party wishes to formally decline the session; in this case, the recommended condition is "decline".

    + + + + ]]>

    Another reason for terminating the session is that the terminating party already has an existing session with the other party and wishes to use that session rather than initiate a new session; in this case, the recommended condition is "alternative-session" and the terminating party SHOULD include the session ID of the atlernative session in the <sid/> element.

    - - b84tkkwlmb48kgfb + + b84tkkwlmb48kgfb + ]]>

    Another reason for terminating the session is that the terminating party does not support any of the offered application formats; in this case, the recommended condition is "unsupported-applications".

    - + ]]>

    Another reason for terminating the session is that the terminating party does not support any of the offered transport methods; in this case, the recommended condition is "unsupported-transports".

    - + ]]>

    Upon receiving an action of "session-terminate", the other party MUST then acknowledge termination of the session:

    + to='juliet@capulet.lit/balcony' + type='result'> ]]>

    Note: As soon as an entity sends a session-terminate action, it MUST consider the session to be in the ENDED state (even before receiving acknowledgement from the other party). If the terminating entity receives additional Jingle-related IQ-sets from the other party after sending the session-terminate action, it MUST reply with an <unknown-session/> error.

    Unfortunately, not all sessions end gracefully. In applications of Jingle that also involve the exchange of presence information, receipt of &UNAVAILABLE; from the other party MAY be considered a session-ending event. However, in this case there is nothing for the party to acknowledge.

    @@ -763,9 +866,9 @@ PENDING o---------------------+ | ]]>

    An informational message MUST be an IQ-set containing a &JINGLE; element whose 'action' attribute is set to a value of "session-info" or "transport-info"; the &JINGLE; element MUST further contain a payload child element (specific to the session or to a transport method) that specifies the information being communicated. If the party that receives an informational message does not understand the payload, it MUST return a &feature; error with a Jingle-specific error condition of <unsupported-info/>.

    @@ -825,7 +928,7 @@ PENDING o---------------------+ | name - A unique name or identifier for the content type, which MAY have semantic meaning in order to differentiate this content type from other content types (e.g., two content types containing video media could differentiate between "room-pan" and "slides"). + A unique name or identifier for the content type according to the creator, which MAY have semantic meaning in order to differentiate this content type from other content types (e.g., two content types containing video media could differentiate between "room-pan" and "slides"). REQUIRED @@ -838,20 +941,19 @@ PENDING o---------------------+ |

    The structure of the <reason/> element is as follows.

      -
    • The <reason/> element MUST contain a <condition/> element that provides machine-readable information about the reason for the action.
    • -
    • The <reason/> element MAY contain a <sid/> element that specifies a Jingle SessionID (e.g., to point to an alternative session).
    • +
    • The <reason/> element MUST contain an element that provides machine-readable information about the condition that prompted the action.
    • The <reason/> element MAY contain a <text/> element that provides human-readable information about the reason for the action.
    • The <reason/> element MAY contain an element qualified by some other namespace that provides more detailed machine-readable information about the reason for the action.

    The defined conditions are described in the folloiwing table.

    - +
    - + @@ -951,8 +1053,8 @@ PENDING o---------------------+ |
  1. How successful application format negotiation occurs for encapsulation into Jingle.
  2. A &DESCRIPTION; element and associated semantics for representing the application format.
  3. If and how the application format can be mapped to the Session Description Protocol, including the appropriate SDP media type (see Section 8.2.1 of RFC 4566).
  4. -
  5. Whether the media for the application format should be sent over a reliable transport method or a lossy transport method (or, if both, which is preferred).
  6. -
  7. Exactly how the media is to be sent and received over a reliable or lossy transport.
  8. +
  9. Whether the media for the application format should be sent over a stream transport method or a datagram transport method (or, if both, which is preferred).
  10. +
  11. Exactly how the media is to be sent and received over a stream or datagram transport.
  12. @@ -960,7 +1062,7 @@ PENDING o---------------------+ |
    1. How successful transport negotiation occurs for encapsulation into Jingle.
    2. A &TRANSPORT; element and associated semantics for representing the transport method.
    3. -
    4. Whether the transport is reliable or lossy.
    5. +
    6. Whether the transport is stream or datagram.
    7. If and how the transport handles components as defined herein (e.g., for the Real Time Control Protocol).
    @@ -1004,7 +1106,7 @@ PENDING o---------------------+ | the name of the application formata natural-language summary of the application format - whether the media can be sent over a "reliable" transport, a "lossy" transport, or "both" + whether the media can be sent over a "stream" transport, a "datagram" transport, or "both" the document in which this application format is specified @@ -1017,7 +1119,7 @@ PENDING o---------------------+ | the name of the transport method a natural-language summary of the transport method - whether the transport method can be "reliable", "lossy", or "both" + whether the transport method can be "stream", "datagram", or "both" the document in which this transport method is specified ]]> @@ -1037,8 +1139,15 @@ PENDING o---------------------+ | - - + + + @@ -1047,12 +1156,13 @@ PENDING o---------------------+ | - + + @@ -1062,58 +1172,56 @@ PENDING o---------------------+ | - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + - - + + + + + + + + + + + @@ -1160,6 +1268,6 @@ PENDING o---------------------+ |

    As a result of feedback received on XEP-0111, the original authors of this document (Joe Hildebrand and Peter Saint-Andre) began to define such a signalling protocol, code-named Jingle. Upon communication with members of the Google Talk team, Google Talk is a messaging and voice chat service and client provided by Google; see <http://www.google.com/talk/>. it was discovered that the emerging Jingle approach was conceptually (and even syntactically) quite similar to the signalling protocol used in the Google Talk application. Therefore, in the interest of interoperability and adoption, we decided to harmonize the two approaches. The signalling protocol specified herein is, therefore, substantially equivalent to the original Google Talk protocol, with several adjustments based on feedback received from implementors as well as for publication by the XMPP Standards Foundation.

    -

    The authors would like to thank Rohan Mahy for his valuable input on early versions of the Jingle specifications. Thiago Camargo, Diana Cionoiu, Olivier Crête, Dafydd Harries, Antti Ijäs, Tim Julien, Lauri Kaila, Justin Karneges, Jussi Laako, Anthony Minessale, Matt O'Gorman, Rob Taylor, Matt Tucker, Saku Vainio, Brian West, and others have also provided helpful input. Thanks also to those who have commented on the &SSIG; and (earlier) Jingle Before this specification was formally accepted by the XMPP Standards Foundation as an XMPP Extension Protocol, it was discussed on the semi-private <jingle@jabber.org> mailing list; although that list is no longer used since the standards@xmpp.org list is the preferred discussion venue, for historical purposes it is publicly archived at <http://mail.jabber.org/pipermail/jingle/>. mailing lists.

    +

    The authors would like to thank Rohan Mahy for his valuable input on early versions of the Jingle specifications. Thiago Camargo, Diana Cionoiu, Olivier Crête, Dafydd Harries, Antti Ijäs, Tim Julien, Lauri Kaila, Justin Karneges, Jussi Laako, Steffen Larsen, Anthony Minessale, Akito Nozaki, Matt O'Gorman, Rob Taylor, Matt Tucker, Justin Uberti, Saku Vainio, Brian West, Jeff Williams, and others have also provided helpful input. Thanks also to those who have commented on the &SSIG; and (earlier) Jingle Before this specification was formally accepted by the XMPP Standards Foundation as an XMPP Extension Protocol, it was discussed on the semi-private <jingle@jabber.org> mailing list; although that list is no longer used since the standards@xmpp.org list is the preferred discussion venue, for historical purposes it is publicly archived at <http://mail.jabber.org/pipermail/jingle/>. mailing lists.

    Element Description
    <alternative-session/>The party prefers to use an existing session with the peer rather than initiate a new session; the session ID of the alternative session should be provided in the reasontext attribute.The party prefers to use an existing session with the peer rather than initiate a new session; the Jingle session ID of the alternative session SHOULD be provided as the XML character data of the <sid/> child.
    <busy/>