GNU SIP Witch 0.3.9 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News GNU SIP Witch 0.3.9 (Default branch)
# 1  
Old 01-20-2009
GNU SIP Witch 0.3.9 (Default branch)

GNU SIP Witch is a pure SIP-based office telephonecall server that supports generic phone systemfeatures like call forwarding, hunt groups andcall distribution, call coverage and ring groups,holding, and call transfer, as well as offeringSIP specific capabilities such as presence andmessaging. It supports secure telephone extensionsfor making calls over the Internet, andintercept/decrypt-free peer-to-peer audio andvideo extensions. It is not a SIP proxy, amulti-protocol telephone server, or an IP-PBX, anddoes not try to emulate Asterisk, FreeSWITCH, or Yate.License: GNU General Public License v3Changes:
Introduction of call statistics and a formal SNMP "MIB" for alarm traps and notifications for telephony services. Support for shell and CGI query of server stats, along with periodic collection and rollover of call stats. Enhanced IPC services for extracting server internals to external processes.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Net::SIP::Dropper::ByField(3pm) 			User Contributed Perl Documentation			   Net::SIP::Dropper::ByField(3pm)

NAME
Net::SIP::Dropper::ByField - drops SIP messages based on fields in SIP header SYNOPSIS
my $drop_by_field = Net::SIP::Dropper::ByField->new( methods => [ 'REGISTER', '...', '' ], 'From' => qr/sip(?:vicious|sscuser)/, 'User-Agent' => qr/^friendly-scanner$/, ); my $dropper = Net::SIP::Dropper->new( cb => $drop_by_field ); my $chain = Net::SIP::ReceiveChain->new([ $dropper, ... ]); DESCRIPTION
With "Net::SIP::Dropper::ByField" one can drop packets based on the contents of the fields in the SIP header. This can be used to drop specific user agents. CONSTRUCTOR
new ( ARGS ) ARGS is a hash with the following keys: methods Optional argument to restrict dropping to specific methods. Is array reference of method names, if one of the names is empty also responses will be considered. If not given all packets will be checked. field-name Any argument other then "methods" will be considered a field name. The value is a callback given to "invoke_callback", like for instance a Regexp. METHODS
run ( PACKET, LEG, FROM ) This method is called as a callback from the Net::SIP::Dropper object. It returns true if the packet should be dropped, e.g. if at least one of the in the constructor specified fields matches the specified value. perl v5.14.2 2011-02-03 Net::SIP::Dropper::ByField(3pm)