[svn-commits] jeffg: branch 1.4 r124372 - /branches/1.4/doc/
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Jun 20 16:14:40 CDT 2008
Author: jeffg
Date: Fri Jun 20 16:14:40 2008
New Revision: 124372
URL: http://svn.digium.com/view/asterisk?view=rev&rev=124372
Log:
Fix issues in digium-mib.txt and asterisk-mib.txt to placate smilint - bug 12905
Modified:
branches/1.4/doc/asterisk-mib.txt
branches/1.4/doc/digium-mib.txt
Modified: branches/1.4/doc/asterisk-mib.txt
URL: http://svn.digium.com/view/asterisk/branches/1.4/doc/asterisk-mib.txt?view=diff&rev=124372&r1=124371&r2=124372
==============================================================================
--- branches/1.4/doc/asterisk-mib.txt (original)
+++ branches/1.4/doc/asterisk-mib.txt Fri Jun 20 16:14:40 2008
@@ -1,7 +1,8 @@
ASTERISK-MIB DEFINITIONS ::= BEGIN
IMPORTS
- OBJECT-TYPE, MODULE-IDENTITY, Integer32, Counter32, TimeTicks
+ OBJECT-TYPE, MODULE-IDENTITY, Integer32, Counter32, TimeTicks,
+ Unsigned32, Gauge32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString, TruthValue
@@ -11,7 +12,7 @@
FROM DIGIUM-MIB;
asterisk MODULE-IDENTITY
- LAST-UPDATED "200603061840Z"
+ LAST-UPDATED "200806202025Z"
ORGANIZATION "Digium, Inc."
CONTACT-INFO
"Mark A. Spencer
@@ -32,6 +33,14 @@
DESCRIPTION
"Asterisk is an Open Source PBX. This MIB defined
objects for managing Asterisk instances."
+ REVISION "200806202025Z"
+ DESCRIPTION
+ "smilint police --
+ Add missing imports; fix initial capitalization
+ of enumeration elements; add missing range
+ restrictions for Integer32 indices, correct
+ spelling of astChanCidANI in its definition.
+ Addresses bug 12905. - jeffg at opennms.org"
REVISION "200603061840Z"
DESCRIPTION
"Change audio codec identification from 3kAudio to
@@ -158,7 +167,7 @@
}
astIndIndex OBJECT-TYPE
- SYNTAX Integer32
+ SYNTAX Integer32 (1 .. 2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@@ -264,7 +273,7 @@
}
astChanIndex OBJECT-TYPE
- SYNTAX Integer32
+ SYNTAX Integer32 (1 .. 2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@@ -502,7 +511,7 @@
"Caller Name."
::= { astChanEntry 28 }
-astCanCidANI OBJECT-TYPE
+astChanCidANI OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
@@ -552,10 +561,10 @@
astChanAMAFlags OBJECT-TYPE
SYNTAX INTEGER {
- Default(0),
- Omit(1),
- Billing(2),
- Documentation(3)
+ default(0),
+ omit(1),
+ billing(2),
+ documentation(3)
}
MAX-ACCESS read-only
STATUS current
@@ -565,10 +574,10 @@
astChanADSI OBJECT-TYPE
SYNTAX INTEGER {
- Unknown(0),
- Available(1),
- Unavailable(2),
- OffHookOnly(3)
+ unknown(0),
+ available(1),
+ unavailable(2),
+ offHookOnly(3)
}
MAX-ACCESS read-only
STATUS current
@@ -586,14 +595,14 @@
astChanHangupCause OBJECT-TYPE
SYNTAX INTEGER {
- NotDefined(0),
- Unregistered(3),
- Normal(16),
- Busy(17),
- NoAnswer(19),
- Congestion(34),
- Failure(38),
- NoSuchDriver(66)
+ notDefined(0),
+ unregistered(3),
+ normal(16),
+ busy(17),
+ noAnswer(19),
+ congestion(34),
+ failure(38),
+ noSuchDriver(66)
}
MAX-ACCESS read-only
STATUS current
@@ -611,16 +620,16 @@
astChanFlags OBJECT-TYPE
SYNTAX BITS {
- WantsJitter(0),
- DeferDTMF(1),
- WriteInterrupt(2),
- Blocking(3),
- Zombie(4),
- Exception(5),
- MusicOnHold(6),
- Spying(7),
- NativeBridge(8),
- AutoIncrementingLoop(9)
+ wantsJitter(0),
+ deferDTMF(1),
+ writeInterrupt(2),
+ blocking(3),
+ zombie(4),
+ exception(5),
+ musicOnHold(6),
+ spying(7),
+ nativeBridge(8),
+ autoIncrementingLoop(9)
}
MAX-ACCESS read-only
STATUS current
@@ -630,12 +639,12 @@
astChanTransferCap OBJECT-TYPE
SYNTAX INTEGER {
- Speech(0),
- Digital(8),
- RestrictedDigital(9),
- Audio3k(16),
- DigitalWithTones(17),
- Video(24)
+ speech(0),
+ digital(8),
+ restrictedDigital(9),
+ audio3k(16),
+ digitalWithTones(17),
+ video(24)
}
MAX-ACCESS read-only
STATUS current
@@ -680,7 +689,7 @@
}
astChanTypeIndex OBJECT-TYPE
- SYNTAX Integer32
+ SYNTAX Integer32 (1 .. 2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
Modified: branches/1.4/doc/digium-mib.txt
URL: http://svn.digium.com/view/asterisk/branches/1.4/doc/digium-mib.txt?view=diff&rev=124372&r1=124371&r2=124372
==============================================================================
--- branches/1.4/doc/digium-mib.txt (original)
+++ branches/1.4/doc/digium-mib.txt Fri Jun 20 16:14:40 2008
@@ -1,17 +1,24 @@
DIGIUM-MIB DEFINITIONS ::= BEGIN
IMPORTS
- enterprises
+ enterprises, MODULE-IDENTITY
FROM SNMPv2-SMI;
digium MODULE-IDENTITY
- LAST-UPDATED "200602041900Z"
+ LAST-UPDATED "200806202000Z"
ORGANIZATION "Digium, Inc."
CONTACT-INFO
"Mark Spencer
Email: markster at digium.com"
DESCRIPTION
- ""
+ "The Digium private-enterprise MIB"
+ REVISION "200806202000Z"
+ DESCRIPTION
+ "Corrected imports and missing revision for last update.
+ Addresses bug 12905. - jeffg at opennms.org"
+ REVISION "200602041900Z"
+ DESCRIPTION
+ "Initial revision."
::= { enterprises 22736 }
END
More information about the svn-commits
mailing list