?? layer2.pm
字號(hào):
## $Id: Layer2.pm,v 1.2.2.2 2006/05/25 12:18:19 gomor Exp $#package Net::Packet::Layer2;use strict;use warnings;require Net::Packet::Layer;our @ISA = qw(Net::Packet::Layer);__PACKAGE__->cgBuildIndices;use Net::Packet::Consts qw(:layer);sub layer { NP_LAYER_N_2 }sub _is { (shift->is eq shift()) ? 1 : 0 }sub isEth { shift->_is(NP_LAYER_ETH) }sub isNull { shift->_is(NP_LAYER_NULL) }sub isRaw { shift->_is(NP_LAYER_RAW) }sub isSll { shift->_is(NP_LAYER_SLL) }1;__END__=head1 NAMENet::Packet::Layer2 - base class for all layer 2 modules=head1 DESCRIPTIONThis is the base class for B<Net::Packet::Layer2> subclasses.It just provides those layers with inheritable attributes and methods.=head1 METHODS=over 4=item B<isEth>=item B<isNull>=item B<isRaw>=item B<isSll>Returns true if Layer2 is of specified type, false otherwise.=back=head1 AUTHORPatrice E<lt>GomoRE<gt> Auffret=head1 COPYRIGHT AND LICENSECopyright (c) 2004-2006, Patrice E<lt>GomoRE<gt> AuffretYou may distribute this module under the terms of the Artistic license.See LICENSE.Artistic file in the source distribution archive.=head1 RELATED MODULESL<NetPacket>, L<Net::RawIP>, L<Net::RawSock>=cut
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -