Scroll to navigation

Asterisk::Manager(3pm) User Contributed Perl Documentation Asterisk::Manager(3pm)

NAME

Asterisk::Manager - Asterisk Manager Interface

SYNOPSIS

use Asterisk::Manager;

my $astman = new Asterisk::Manager;

$astman->user('username');

$astman->secret('test');

$astman->host('localhost');

$astman->connect || die "Could not connect to " . $astman->host . "!\n";

$astman->disconnect;

DESCRIPTION

This module provides a simple interface to the asterisk manager interface.

2016-12-22 perl v5.24.1