Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 18591 invoked from network); 28 Sep 2005 22:05:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Sep 2005 22:05:04 -0000 Received: (qmail 10256 invoked by uid 500); 28 Sep 2005 22:05:04 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 10217 invoked by uid 500); 28 Sep 2005 22:05:04 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 10204 invoked by uid 99); 28 Sep 2005 22:05:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Sep 2005 15:05:04 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 28 Sep 2005 15:05:10 -0700 Received: (qmail 18414 invoked by uid 65534); 28 Sep 2005 22:04:43 -0000 Message-ID: <20050928220443.18413.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r292329 - /directory/apacheds/trunk/core/src/main/schema/apachedns.schema Date: Wed, 28 Sep 2005 22:04:42 -0000 To: commits@directory.apache.org From: erodriguez@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: erodriguez Date: Wed Sep 28 15:04:40 2005 New Revision: 292329 URL: http://svn.apache.org/viewcvs?rev=292329&view=rev Log: Addition to apachedns.schema to support DIRDNS-4 (Add support for service location SRV records) o Added new objectClass for the SRV record type. o Added 3 new attributeTypes for SRV priority, weight, and port. http://issues.apache.org/jira/browse/DIRDNS-4 Modified: directory/apacheds/trunk/core/src/main/schema/apachedns.schema Modified: directory/apacheds/trunk/core/src/main/schema/apachedns.schema URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/core/src/main/schema/apachedns.schema?rev=292329&r1=292328&r2=292329&view=diff ============================================================================== --- directory/apacheds/trunk/core/src/main/schema/apachedns.schema (original) +++ directory/apacheds/trunk/core/src/main/schema/apachedns.schema Wed Sep 28 15:04:40 2005 @@ -76,6 +76,21 @@ EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} SINGLE-VALUE ) +attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.25 NAME 'apacheDnsServicePriority' + DESC 'The unsigned 16 bit priority of this target host' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) + +attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.26 NAME 'apacheDnsServiceWeight' + DESC 'The unsigned 16 bit weight specifying a relative weight for entries with the same priority' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) + +attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.27 NAME 'apacheDnsServicePort' + DESC 'The unsigned 16 bit port on this target host of this service' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) + objectclass ( 1.2.6.1.4.1.18060.1.1.1.4.6 NAME 'apacheDnsAbstractRecord' DESC 'An abstract DNS record objectClass used to build other specific structural objectclasses for different record types' @@ -124,3 +139,9 @@ DESC 'A text TXT record' SUP apacheDnsAbstractRecord MUST apacheDnsCharacterString ) + +objectclass ( 1.2.6.1.4.1.18060.1.1.1.4.10 + NAME 'apacheDnsServiceRecord' + DESC 'A service SRV record' + SUP apacheDnsAbstractRecord + MUST ( apacheDnsServicePriority $ apacheDnsServiceWeight $ apacheDnsServicePort $ apacheDnsDomainName ) )