Initial checkin of the POE::Filter::FSSocket module and fsconsole.pl which is a curses, multi-window console for freeswitch mod_event_socket. See http://search.cpan.org/~ptinsley/POE-Filter-FSSocket-0.04/lib/POE/Filter/FSSocket.pm for more info on the perl module.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3116 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Paul Tinsley
2006-10-20 06:20:39 +00:00
parent 3a32d9e53c
commit bb5b51dfbe
11 changed files with 1219 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/perl
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'POE::Filter::FSSocket',
AUTHOR => 'Paul Tinsley <pdt@jackhammer.org>',
ABSTRACT => 'POE filter for getting events out of FreeSWITCH',
VERSION_FROM => 'lib/POE/Filter/FSSocket.pm',
PM => { 'lib/POE/Filter/FSSocket.pm' => '$(INST_LIBDIR)/FSSocket.pm' },
PREREQ_PM => {
POE => 0.3101,
Test::More => 0,
POE::Component::Client::TCP => 0,
POE::Filter::Line => 0,
},
dist => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
},
);