Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reyjrar/poe-component-debugshell-tcp
DebugShell for POE over a TCP Port
https://github.com/reyjrar/poe-component-debugshell-tcp
Last synced: about 1 month ago
JSON representation
DebugShell for POE over a TCP Port
- Host: GitHub
- URL: https://github.com/reyjrar/poe-component-debugshell-tcp
- Owner: reyjrar
- Created: 2012-11-07T13:41:33.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-11T12:26:08.000Z (almost 11 years ago)
- Last Synced: 2023-03-11T02:08:40.070Z (almost 2 years ago)
- Language: Perl
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkdn
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
POE::Component::DebugShell::TCP - DebugShell accessible via a TCP Port
# VERSION
version 0.01
# SYNOPSIS
This POE Component provides a debugging port for your application to
see the internal using the capabilities provided by POE::API::Peek.use POE qw(
Component::DebugShell::TCP
);# Message Dispatch Service
my $SESSION = POE::Component::DebugShell::TCP->spawn(
ListenAddress => 'localhost', #default
ListenPort => 9094, #default
);POE::Kernel->run();
# EXPORT
POE::Component::Server::eris does not export any symbols.
# FUNCTIONS
## spawn
Creates the POE::Session for the DebugShell.
Parameters:
ListenAddress => 'localhost', \#default
ListenPort => '9094', \#default## INTERNAL FUNCTIONS
### client\_connect
Handles connection establishment
### client\_input
Handles client input
### client\_term
Handles client termination
# SEE ALSO
- [POE::API::Peek](http://search.cpan.org/dist/POE-API-Peek)
- [POE::Component::DebugShell](http://search.cpan.org/dist/POE-Component-DebugShell)
- [POE::Component::DebugShell::Jabber](http://search.cpan.org/dist/POE-Component-DebugShell-Jabber)# AUTHOR
Brad Lhotsky
# COPYRIGHT AND LICENSE
This software is Copyright (c) 2012 by Brad Lhotsky.
This is free software, licensed under:
The (three-clause) BSD License