Asterisk 1.4.17 (Current branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Asterisk 1.4.17 (Current branch)
# 1  
Old 01-25-2008
Asterisk 1.4.17 (Current branch)

Image Asterisk is a hybrid TDM and packet voice PBX (Private Branch eXchange) and IVR platform with ACD functionality. It acts as middleware between the Internet (IAX, SIP, MGCP, Skinny, H.323), telephony channels (like Zaptel, T1, PRI, E1, FXO, FXS, VoIP, VoFR, ISDN, modems, Internet Phone Jack, etc.), and applications (like voice-mail, conferencing, directories, MP3 players, intercoms, etc.). It has many advanced features such as a codec translation API. The base distribution includes several channel backends, as well as applications. However, the beauty of Asterisk is its ability to be extended using its APIs, dynamic module loader, and AGI scripting interface. End users can even write their own applications that run on the system in C or any scripting language of their choice. License: GNU General Public License (GPL) Changes:
The Portuguese syntax for saying dates and times was fixed. The sounds were updated. Many serious bugs were fixed. Code cleanup was done.Image

More...
Login or Register to Ask a Question

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

NAME
Net::SIP::Redirect - Send redirect to Requests based on lookup at a registrar SYNOPSIS
my $reg = Net::SIP::Registrar->new(...); my $redir = Net::SIP::Redirect( dispatcher => $dispatcher, registrar => $reg, ); DESCRIPTION
This package implements a simple redirection of Requests using the information provided by a registrar. CONSTRUCTOR
new ( %ARGS ) This creates a new redirect object, %ARGS can have the following keys: dispatcher Net::SIP::Dispatcher object manging the registar. Mandatory. registrar Registrar object. This is an object like a Net::SIP::Registrar, which has a "query(address)" method which returns a list of contacts. METHODS
receive ( PACKET,LEG,FROM ) PACKET is the incoming packet, LEG is the Net::SIP::Leg where the packet arrived and FROM is the "ip:port" of the sender. Responses will be send back to the sender through the same leg. Called from the managing Net::SIP::Dispatcher object if a new packet arrives. Will return "()" and ignore the packet if it's an REGISTER request. For Requests it will query the registrar and return either "302 Moved Temporarily" with the list of contacts or "404 Not found" if the address is not registered. perl v5.14.2 2010-05-31 Net::SIP::Redirect(3pm)