perltidy
This commit is contained in:
		| @@ -3,21 +3,21 @@ | ||||
| # | ||||
| # Copyright (c) 2008 Bill Fenner | ||||
| # All rights reserved. | ||||
| #  | ||||
| # Redistribution and use in source and binary forms, with or without  | ||||
| # | ||||
| # Redistribution and use in source and binary forms, with or without | ||||
| # modification, are permitted provided that the following conditions are met: | ||||
| #  | ||||
| # | ||||
| #     * Redistributions of source code must retain the above copyright notice, | ||||
| #       this list of conditions and the following disclaimer. | ||||
| #     * Redistributions in binary form must reproduce the above copyright | ||||
| #       notice, this list of conditions and the following disclaimer in the | ||||
| #       documentation and/or other materials provided with the distribution. | ||||
| #     * Neither the name of the University of California, Santa Cruz nor the  | ||||
| #       names of its contributors may be used to endorse or promote products  | ||||
| #     * Neither the name of the University of California, Santa Cruz nor the | ||||
| #       names of its contributors may be used to endorse or promote products | ||||
| #       derived from this software without specific prior written permission. | ||||
| #  | ||||
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"  | ||||
| # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE   | ||||
| # | ||||
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||||
| # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||||
| # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||||
| # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | ||||
| # LIABLE FOR # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||||
| @@ -34,28 +34,20 @@ use strict; | ||||
| use Exporter; | ||||
| use SNMP::Info::Layer2; | ||||
|  | ||||
| @SNMP::Info::Layer2::Netgear::ISA = qw/SNMP::Info::Layer2 Exporter/; | ||||
| @SNMP::Info::Layer2::Netgear::ISA       = qw/SNMP::Info::Layer2 Exporter/; | ||||
| @SNMP::Info::Layer2::Netgear::EXPORT_OK = qw//; | ||||
|  | ||||
| use vars qw/$VERSION %GLOBALS %MIBS %FUNCS %MUNGE/; | ||||
|  | ||||
| $VERSION = '1.09'; | ||||
|  | ||||
| %MIBS    = ( | ||||
|             %SNMP::Info::Layer2::MIBS, | ||||
|            ); | ||||
| %MIBS = ( %SNMP::Info::Layer2::MIBS, ); | ||||
|  | ||||
| %GLOBALS = ( | ||||
|             %SNMP::Info::Layer2::GLOBALS, | ||||
|            ); | ||||
| %GLOBALS = ( %SNMP::Info::Layer2::GLOBALS, ); | ||||
|  | ||||
| %FUNCS   = ( | ||||
| 	    %SNMP::Info::Layer2::FUNCS, | ||||
|            ); | ||||
| %FUNCS = ( %SNMP::Info::Layer2::FUNCS, ); | ||||
|  | ||||
| %MUNGE   = ( | ||||
| 	    %SNMP::Info::Layer2::MUNGE, | ||||
|            ); | ||||
| %MUNGE = ( %SNMP::Info::Layer2::MUNGE, ); | ||||
|  | ||||
| sub vendor { | ||||
|     return 'netgear'; | ||||
| @@ -82,20 +74,20 @@ sub model { | ||||
| # return anything. | ||||
| sub fw_mac { | ||||
|     my $netgear = shift; | ||||
|     my $ret = $netgear->qb_fw_mac(); | ||||
|     $ret = $netgear->orig_fw_mac() if (!defined($ret)); | ||||
|     my $ret     = $netgear->qb_fw_mac(); | ||||
|     $ret = $netgear->orig_fw_mac() if ( !defined($ret) ); | ||||
|     return $ret; | ||||
| } | ||||
|  | ||||
| sub fw_port { | ||||
|     my $netgear = shift; | ||||
|     my $ret = $netgear->qb_fw_port(); | ||||
|     $ret = $netgear->orig_fw_port() if (!defined($ret)); | ||||
|     my $ret     = $netgear->qb_fw_port(); | ||||
|     $ret = $netgear->orig_fw_port() if ( !defined($ret) ); | ||||
|     return $ret; | ||||
| } | ||||
|  | ||||
| 1; | ||||
|    | ||||
|  | ||||
| __END__ | ||||
|  | ||||
| =head1 NAME | ||||
| @@ -141,7 +133,8 @@ inherited methods. | ||||
|  | ||||
| =item Inherited Classes' MIBs | ||||
|  | ||||
| MIBs listed in L<SNMP::Info::Layer2/"Required MIBs"> and its inherited classes. | ||||
| MIBs listed in L<SNMP::Info::Layer2/"Required MIBs"> and its inherited | ||||
| classes. | ||||
|  | ||||
| =back | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user