ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/dm-support.ext
(Generate patch)

Comparing deliantra/server/ext/dm-support.ext (file contents):
Revision 1.19 by root, Sun Jan 13 08:56:23 2008 UTC vs.
Revision 1.25 by root, Sun Apr 11 04:52:07 2010 UTC

29reload_archetypes & 29reload_archetypes &
30ext::help::reload & 30ext::help::reload &
31ext::books::reload & 31ext::books::reload &
32ext::map_tags::reload & 32ext::map_tags::reload &
33ext::map_world::reload & 33ext::map_world::reload &
34print JSON::XS->new->pretty->encode({cf::mallinfo}) 34# ext::map_scheduler::loadall & # debugging only!
35while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } &
36({cf::mallinfo})
35EOF 37EOF
36 print $fh "\n> "; 38 print $fh "\n> ";
37 39
38 my $iow; $iow = EV::io $fh, EV::READ, sub { 40 my $iow; $iow = AE::io $fh, 0, sub {
39 if (defined (my $cmd = <$fh>)) { 41 if (defined (my $cmd = <$fh>)) {
40 $cmd =~ s/\s+$//; 42 $cmd =~ s/\s+$//;
41 43
42 if ($cmd =~ /^\s*exit\b/i) { 44 if ($cmd =~ /^\s*exit\b/i) {
43 print $fh "will not exit() server.\n"; 45 print $fh "will not exit() server.\n";
88our $LISTENER; 90our $LISTENER;
89 91
90# now a shell listening on a tcp-port - let the firewall decide access rights 92# now a shell listening on a tcp-port - let the firewall decide access rights
91if ($cf::CFG{perl_shell}) { 93if ($cf::CFG{perl_shell}) {
92 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) { 94 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
93 $LISTENER = EV::io $listen, EV::READ, sub { tcp_serve $listen->accept }; 95 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
94 } 96 }
95} 97}
96 98
97 99

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines