Browse Source

SIPServer.pm - BEGIN block VERSION and vars related to export.

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
3.0.x
Joe Atzberger 17 years ago
committed by Joshua Ferraro
parent
commit
68cdeccfe7
  1. 11
      C4/SIP/SIPServer.pm

11
C4/SIP/SIPServer.pm

@ -18,7 +18,13 @@ use Sip::MsgType;
use constant LOG_SIP => "local6"; # Local alias for the logging facility
our @ISA = qw(Net::Server::PreFork);
use vars qw(@ISA $VERSION);
BEGIN {
$VERSION = 1.00;
@ISA = qw(Net::Server::PreFork);
}
#
# Main
#
@ -268,3 +274,6 @@ sub sip_protocol_loop {
$expect = '';
}
}
1;
__END__

Loading…
Cancel
Save