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

Comparing deliantra/server/ext/tcp.ext (file contents):
Revision 1.12 by root, Sun May 25 21:15:44 2008 UTC vs.
Revision 1.16 by root, Thu Apr 29 07:32:34 2010 UTC

6 6
7use Socket; 7use Socket;
8use AnyEvent::Socket; 8use AnyEvent::Socket;
9 9
10our $BIND = $cf::CFG{bind_addresses} || [[undef, 13327]]; 10our $BIND = $cf::CFG{bind_addresses} || [[undef, 13327]];
11our @LISTENERS;
11 12
12for (@$BIND) { 13for (@$BIND) {
13 my ($host, $port) = @$_; 14 my ($host, $port) = @$_;
14 warn "listening on $host:$port\n"; 15 cf::info "listening on ", (format_hostport $host, $port), "\n";
15 16
16 tcp_server $host, $port, sub { 17 push @LISTENERS, tcp_server $host, $port, sub {
17 my ($fh, $host, $port) = @_ 18 my ($fh, $host, $port) = @_
18 or return; 19 or return;
19 20
20 my $fd = fileno $fh; 21 cf::info "new connection from ", (format_hostport $host, $port), "\n";
21 22
22 warn "new connection from [$host]:$port\n";
23
24 # HACK to avoid blocking on common files on log-in.
25 # remove once async
26 cf::async {#d#
27 warn "HACK ext/tcp.ext: $cf::CONFDIR/$_\n" and Coro::AIO::aio_load "$cf::CONFDIR/$_", my $dummy for qw(rules news motd);#d#
28 warn "HACK ext/tcp.ext: $cf::LOCALDIR/crossfiremail\n" and Coro::AIO::aio_load "$cf::LOCALDIR/crossfiremail", my $dummy;#d#
29 cf::client::create $fd, $host; 23 cf::client::create fileno $fh, $host;
30 undef $fh;#d#
31 };#d#d
32 }; 24 };
33} 25}
34 26

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines