Skip to content

Commit

Permalink
- typo
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebraun committed Nov 26, 2023
1 parent 9d2c3fe commit 0a71705
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions snmpagent_persist.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,41 +34,41 @@

/* translate well-known textual conventions and SNMP base types to net-snmp */
$smi_base_datatypes = array(
'integer' => 'INTEGER',
'integer32' => 'Integer32',
'unsigned32' => 'Unsigned32',
'gauge' => 'Gauge',
'gauge32' => 'Gauge32',
'counter' => 'Counter',
'counter32' => 'Counter32',
'counter64' => 'Counter64',
'timeticks' => 'TimeTicks',
'octect string' => 'OCTET STRING',
'opaque' => 'Opaque',
'integer' => 'INTEGER',
'integer32' => 'Integer32',
'unsigned32' => 'Unsigned32',
'gauge' => 'Gauge',
'gauge32' => 'Gauge32',
'counter' => 'Counter',
'counter32' => 'Counter32',
'counter64' => 'Counter64',
'timeticks' => 'TimeTicks',
'octet string' => 'OCTET STRING',
'opaque' => 'Opaque',
'object identifier' => 'OBJECT IDENTIFIER',
'ipaddress' => 'IpAddress',
'networkaddress' => 'IpAddress',
'bits' => 'OCTET STRING',
'displaystring' => 'STRING',
'physaddress' => 'OCTET STRING',
'macaddress' => 'OCTET STRING',
'truthvalue' => 'INTEGER',
'testandincr' => 'Integer32',
'autonomoustype' => 'OBJECT IDENTIFIER',
'variablepointer' => 'OBJECT IDENTIFIER',
'rowpointer' => 'OBJECT IDENTIFIER',
'rowstatus' => 'INTEGER',
'timestamp' => 'TimeTicks',
'timeinterval' => 'Integer32',
'dateandtime' => 'STRING',
'storagetype' => 'INTEGER',
'tdomain' => 'OBJECT IDENTIFIER',
'taddress' => 'OCTET STRING'
'ipaddress' => 'IpAddress',
'networkaddress' => 'IpAddress',
'bits' => 'OCTET STRING',
'displaystring' => 'STRING',
'physaddress' => 'OCTET STRING',
'macaddress' => 'OCTET STRING',
'truthvalue' => 'INTEGER',
'testandincr' => 'Integer32',
'autonomoustype' => 'OBJECT IDENTIFIER',
'variablepointer' => 'OBJECT IDENTIFIER',
'rowpointer' => 'OBJECT IDENTIFIER',
'rowstatus' => 'INTEGER',
'timestamp' => 'TimeTicks',
'timeinterval' => 'Integer32',
'dateandtime' => 'STRING',
'storagetype' => 'INTEGER',
'tdomain' => 'OBJECT IDENTIFIER',
'taddress' => 'OCTET STRING'
);

$data = false;
$eol = "\n";
$cache = array();
$data = false;
$eol = "\n";
$cache = array();
$cache_last_refresh = false;

/* process command line options */
Expand Down

0 comments on commit 0a71705

Please sign in to comment.