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.28 by root, Wed Apr 28 21:07:41 2010 UTC vs.
Revision 1.32 by root, Thu May 6 22:35:41 2010 UTC

24reload_perl & 24reload_perl &
25reload_sound & 25reload_sound &
26reload_config & 26reload_config &
27reload_regions & 27reload_regions &
28reload_facedata & 28reload_facedata &
29reload_exp_table &
30reload_materials &
29reload_treasures & 31reload_treasures &
30reload_archetypes & 32reload_archetypes &
31reload_resources & 33reload_resources &
32ext::help::reload & 34ext::help::reload &
33ext::books::reload & 35ext::books::reload &
63 my $t2 = Time::HiRes::time; 65 my $t2 = Time::HiRes::time;
64 66
65 print "\n", 67 print "\n",
66 "command: '$cmd'\n", 68 "command: '$cmd'\n",
67 "execution time: ", $t2 - $t1, "\n"; 69 "execution time: ", $t2 - $t1, "\n";
68 warn "evaluation error: $@" if $@;
69 print "evaluation error: $@\n" if $@; 70 print "evaluation error: $@\n" if $@;
70 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 71 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
71 print "\n> "; 72 print "\n> ";
72 73
73 select STDOUT; 74 select STDOUT;
97 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) { 98 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
98 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept }; 99 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
99 } 100 }
100} 101}
101 102
102

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines