Re: [MMUSIC] Trafficclass Attribute -02 submitted
Paul Kyzivat <pkyzivat@alum.mit.edu> Tue, 17 July 2012 21:39 UTC
Return-Path: <pkyzivat@alum.mit.edu>
X-Original-To: mmusic@ietfa.amsl.com
Delivered-To: mmusic@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8C5D021F8565 for <mmusic@ietfa.amsl.com>; Tue, 17 Jul 2012 14:39:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.337
X-Spam-Level:
X-Spam-Status: No, score=-2.337 tagged_above=-999 required=5 tests=[AWL=0.262, BAYES_00=-2.599]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aG7yvp+Njccw for <mmusic@ietfa.amsl.com>; Tue, 17 Jul 2012 14:39:39 -0700 (PDT)
Received: from qmta09.westchester.pa.mail.comcast.net (qmta09.westchester.pa.mail.comcast.net [76.96.62.96]) by ietfa.amsl.com (Postfix) with ESMTP id 4CC1B21F8559 for <mmusic@ietf.org>; Tue, 17 Jul 2012 14:39:39 -0700 (PDT)
Received: from omta09.westchester.pa.mail.comcast.net ([76.96.62.20]) by qmta09.westchester.pa.mail.comcast.net with comcast id bNzc1j0050SCNGk59ZgWMa; Tue, 17 Jul 2012 21:40:30 +0000
Received: from Paul-Kyzivats-MacBook-Pro.local ([50.138.229.164]) by omta09.westchester.pa.mail.comcast.net with comcast id bZga1j00L3ZTu2S3VZgact; Tue, 17 Jul 2012 21:40:34 +0000
Message-ID: <5005DBCA.8040405@alum.mit.edu>
Date: Tue, 17 Jul 2012 17:40:26 -0400
From: Paul Kyzivat <pkyzivat@alum.mit.edu>
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20120428 Thunderbird/12.0.1
MIME-Version: 1.0
To: mmusic@ietf.org
References: <201207171919.q6HJJQij014492@mtv-core-3.cisco.com>
In-Reply-To: <201207171919.q6HJJQij014492@mtv-core-3.cisco.com>
Content-Type: text/plain; charset="ISO-8859-1"; format="flowed"
Content-Transfer-Encoding: 7bit
Subject: Re: [MMUSIC] Trafficclass Attribute -02 submitted
X-BeenThere: mmusic@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: Multiparty Multimedia Session Control Working Group <mmusic.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/mmusic>, <mailto:mmusic-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/mmusic>
List-Post: <mailto:mmusic@ietf.org>
List-Help: <mailto:mmusic-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/mmusic>, <mailto:mmusic-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Jul 2012 21:39:40 -0000
Some comments on the new version: In section 3 (SDP syntax): tcl-token = %2D / %30-%39 / %41-%5A / %61-7A That only allows one character tokens. Minimally you probably want: tcl-token = 1*(%2D / %30-%39 / %41-%5A / %61-7A) But it would be more readable as: tcl-token = 1*( ALPHA / DIGIT / "-" ) (Those symbols are defined with ABNF in RFC 5234. If so you need a reference. Paraphrasing 3261, you might say: "Appendix B.1 of RFC 5234 defines a set of core rules that are used by this specification, and not repeated here.") But that allows leading and trailing, and multiple consecutive "-"s. So you could tighten it up with: tcl-token = ALPHA 0*(ALPHA / DIGIT) 0*("-" 1*(ALPHA / DIGIT)) Also, your syntax doesn't cover non-standard-adjectives. You could cover that by: adjective = standard-adjective / non-standard-adjective standard-adjective = classified-adjective / unclassified-adjective non-standard-adjective = "_" standard-adjective Sections 6.3 & 6.4: "Specification Required" implies expert review. That in turn calls for some criteria by which the expert can decide if a proposed value is appropriate to be registered. IIUC, 'aq', 'admitted', 'non-admitted', and 'none' are *not* Unqualified adjectives. Rather, 'aq:admitted', 'aq:non-admitted', and 'aq:none' are *qualified* adjectives. Does the distinction matter for registration? Should there be different criteria for registering new qualified adjectives? Maybe so. Maybe there should be some review of whether the new 'aq:foo' is compatible with the intended meaning of 'aq'??? Thanks, Paul On 7/17/12 3:19 PM, James Polk wrote: > MMUSIC > > We've submitted a revision of the Traffic Class Label attribute here > https://datatracker.ietf.org/doc/draft-ietf-mmusic-traffic-class-for-sdp > > These are the following changes made between the WG -01 version and > the -02 version: > > - converged the use of terms 'parent' and 'category' to just > 'category' for consistency. > > - changed ABNF to reflect extensibility by not having applications > and adjectives named in the ABNF, rather have them merely IANA > registered. This was brought up on the list and in the Paris > meeting. > > - merged the qualified and unqualified adjective sections into a > single section on adjectives, but allowing some to have a > preceding qualifier. This was brought up on the list and in the > Paris meeting. > > - text clean-up > > We have one known open issue, which is related to some document > structure around the categories, applications and adjectives. > > We have another known open issue regarding articulating better which > adjectives are appropriate with which applications, as well as which > applications are appropriate with which categories. > > Other comments and questions are solicited. > > James/Subha/Paul > > _______________________________________________ > mmusic mailing list > mmusic@ietf.org > https://www.ietf.org/mailman/listinfo/mmusic >
- [MMUSIC] Trafficclass Attribute -02 submitted James Polk
- Re: [MMUSIC] Trafficclass Attribute -02 submitted Paul Kyzivat
- Re: [MMUSIC] Trafficclass Attribute -02 submitted Paul Kyzivat
- Re: [MMUSIC] Trafficclass Attribute -02 submitted Paul E. Jones
- Re: [MMUSIC] Trafficclass Attribute -02 submitted Paul Kyzivat
- Re: [MMUSIC] Trafficclass Attribute -02 submitted Paul E. Jones