Added basic i_set_vlan()

This commit is contained in:
Max Baker
2005-04-27 04:31:11 +00:00
parent dce0a40ebb
commit 089430de17

View File

@@ -138,6 +138,18 @@ sub i_vlan {
return $i_vlan;
}
sub set_i_vlan {
my $vtp = shift;
# Check for CISCO-VLAN-MIB
my $i_vlan = $vtp->i_vlan2();
if (defined $i_vlan) {
return $vtp->set_i_vlan2(@_);
}
# only support the first case for now.
return undef;
}
1;
__END__