Re: [rtcweb] Data Channel Negotiation
Michael Tuexen <Michael.Tuexen@lurchi.franken.de> Mon, 11 February 2013 20:04 UTC
Return-Path: <Michael.Tuexen@lurchi.franken.de>
X-Original-To: rtcweb@ietfa.amsl.com
Delivered-To: rtcweb@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9166D21F86C4 for <rtcweb@ietfa.amsl.com>; Mon, 11 Feb 2013 12:04:49 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.599
X-Spam-Level:
X-Spam-Status: No, score=-2.599 tagged_above=-999 required=5 tests=[BAYES_00=-2.599]
Received: from mail.ietf.org ([64.170.98.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jD75OzTA0iTm for <rtcweb@ietfa.amsl.com>; Mon, 11 Feb 2013 12:04:49 -0800 (PST)
Received: from mail-n.franken.de (drew.ipv6.franken.de [IPv6:2001:638:a02:a001:20e:cff:fe4a:feaa]) by ietfa.amsl.com (Postfix) with ESMTP id 7AAC621F86CD for <rtcweb@ietf.org>; Mon, 11 Feb 2013 12:04:48 -0800 (PST)
Received: from [192.168.1.101] (p508FA903.dip.t-dialin.net [80.143.169.3]) (Authenticated sender: macmic) by mail-n.franken.de (Postfix) with ESMTP id B15331C0C0695; Mon, 11 Feb 2013 21:04:28 +0100 (CET)
Mime-Version: 1.0 (Apple Message framework v1283)
Content-Type: text/plain; charset="us-ascii"
From: Michael Tuexen <Michael.Tuexen@lurchi.franken.de>
In-Reply-To: <CABkgnnV2m=m+qtM1YR4CPse=gyekvWThon_Nxbf8YMVaNuvq6Q@mail.gmail.com>
Date: Mon, 11 Feb 2013 21:04:28 +0100
Content-Transfer-Encoding: quoted-printable
Message-Id: <CCAE98D8-A5EA-48F9-8B57-B24400D6B10B@lurchi.franken.de>
References: <CABkgnnWUpMSBLioSD2+p82vGszX9R0Q4WFfME5j-DuK+B7KVJw@mail.gmail.com> <5113CD16.6090806@jesup.org> <CABkgnnW792o76t9dKhidOMJpa21VcbPQZFU1HYnY_yjTPCWhYw@mail.gmail.com> <51166A3C.4000604@jesup.org> <CABkgnnV2m=m+qtM1YR4CPse=gyekvWThon_Nxbf8YMVaNuvq6Q@mail.gmail.com>
To: Martin Thomson <martin.thomson@gmail.com>
X-Mailer: Apple Mail (2.1283)
Cc: Randell Jesup <randell-ietf@jesup.org>, "rtcweb@ietf.org" <rtcweb@ietf.org>
Subject: Re: [rtcweb] Data Channel Negotiation
X-BeenThere: rtcweb@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: Real-Time Communication in WEB-browsers working group list <rtcweb.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/rtcweb>
List-Post: <mailto:rtcweb@ietf.org>
List-Help: <mailto:rtcweb-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 11 Feb 2013 20:04:49 -0000
On Feb 11, 2013, at 8:54 PM, Martin Thomson wrote: > On 9 February 2013 07:24, Randell Jesup <randell-ietf@jesup.org> wrote: >> As I mentioned, it was purely declarative (no response/negotiation), which >> is why the return SDP doesn't have them. > > Your examples didn't have the values for stream 1 echoed in the > answer, so I assumed that it was "semi-declarative" or something like > that: where the values for stream 1 were inferred. > >> If you were to extend this to work for renegotiations where glare is >> possible, you'd have to either wait for the renegotiation to finish, or use >> some even/odd sort of trick which was proposed way back when on the list. > > If you want to resolve glare, then you use the mechanisms you already > have for glare resolution. Which, RFC 3264 defers to RFC 3261, which > uses a fairly heavy-weight mechanism. Keep in mind that you already > need this if you are using offer-answer. Use whatever mechanism you > already have in place (I like the tie-breaker random number method > myself). > > Or, you could stop worrying about glare and in those cases where glare > is possible, allow the collision to proceed. > > This is an application choice. >> Out-of-band negotiation means either: >> >> a) SDP offer/answer (which in many cases will go via a central server, >> though it can go over an existing datachannel), min 1 RTT (perhaps >> 1-RTT-through-server) plus SDP processing delay, and requires implementing >> error handling for cases where the answers and offers don't properly match >> up, > > This was my thought. There is no need to reserve a channel for this > purpose, that's just extra machinery. Any app that wants the fast > path for this will make their own. And, the nice thing about that is > that they can do this before setting up the session. > >> Are there real usecases where the in-band Open and OpenResponse messages >> actually cause a usecase not to work? > > Well, given that we need message type stuff, we already have to suffer > some extra muck on top of the SCTP association. Not many applications > will survive that. > > No, the real question is: what value do these messages actually add? One important thing is that they tie the two outgoing streams together. Each side controls its outgoing streams. The other things are just declaring channel properties... Best regards Michael > What information do they convey that isn't already negotiated through > other channels? > > Starting a stream with a header that declares attributes for a stream > sounds nice, but it's completely unnecessary in a vast number of > cases. For many cases, this is a case of the same piece of software > talking to itself - it hardly cares. In many other cases, negotiation > of properties through SDP is perfectly sufficient. > > The only case I see for an in-band protocol is where you wish to > invent some new protocol on this platform, and I can't really muster > up that much enthusiasm for that. It's far too heavily reliant on my > imagination. Even in those cases, my knowledge of existing SCTP usage > patterns suggest that the properties that are sent in > Open/OpenResponse messages are not that useful to have. Many > applications will use the same values for all new streams. > _______________________________________________ > rtcweb mailing list > rtcweb@ietf.org > https://www.ietf.org/mailman/listinfo/rtcweb >
- [rtcweb] Data Channel Negotiation Martin Thomson
- Re: [rtcweb] Data Channel Negotiation Randell Jesup
- Re: [rtcweb] Data Channel Negotiation Martin Thomson
- Re: [rtcweb] Data Channel Negotiation Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation Randell Jesup
- Re: [rtcweb] Data Channel Negotiation Martin Thomson
- Re: [rtcweb] Data Channel Negotiation Martin Thomson
- Re: [rtcweb] Data Channel Negotiation Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation Martin Thomson
- [rtcweb] Data Channel Negotiation and reopening o… Randell Jesup
- Re: [rtcweb] Data Channel Negotiation and reopeni… Stefan Håkansson LK
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Cullen Jennings
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Randell Jesup
- Re: [rtcweb] Data Channel Negotiation and reopeni… Randell Jesup
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Ted Hardie
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Matthew Kaufman (SKYPE)
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Thornburgh
- Re: [rtcweb] Data Channel Negotiation and reopeni… Ted Hardie
- Re: [rtcweb] Data Channel Negotiation and reopeni… Randell Jesup
- Re: [rtcweb] Data Channel Negotiation and reopeni… Randell Jesup
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation and reopeni… Matthew Kaufman (SKYPE)
- Re: [rtcweb] Data Channel Negotiation and reopeni… Matthew Kaufman (SKYPE)
- Re: [rtcweb] Data Channel Negotiation and reopeni… Randell Jesup
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation and reopeni… Michael Tuexen
- Re: [rtcweb] Data Channel Negotiation and reopeni… Tim Panton
- Re: [rtcweb] Data Channel Negotiation and reopeni… Harald Alvestrand
- Re: [rtcweb] Data Channel Negotiation and reopeni… Paul Kyzivat
- Re: [rtcweb] Data Channel Negotiation and reopeni… Martin Thomson
- Re: [rtcweb] Data Channel Negotiation and reopeni… Paul Kyzivat
- Re: [rtcweb] Data Channel Negotiation and reopeni… Paul Kyzivat
- Re: [rtcweb] Data Channel Negotiation and reopeni… Stefan Håkansson LK
- Re: [rtcweb] Data Channel Negotiation and reopeni… Randell Jesup
- Re: [rtcweb] Data Channel Negotiation and reopeni… Paul Kyzivat
- Re: [rtcweb] Data Channel Negotiation and reopeni… Harald Alvestrand