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.7 by root, Tue Mar 6 21:19:10 2007 UTC vs.
Revision 1.12 by root, Sun May 25 21:15:44 2008 UTC

1#! perl 1#! perl # MANDATORY
2 2
3# this listens for new tcp connections and hands them over to the server core 3# this listens for new tcp connections and hands them over to the server core
4# wether this being an extension introduces or reduces stability problems 4# wether this being an extension introduces or reduces stability problems
5# is unknown as of today. 5# is unknown as of today.
6 6
7use Socket; 7use Socket;
8use IO::Socket::INET; 8use AnyEvent::Socket;
9 9
10our $LISTEN = new IO::Socket::INET 10our $BIND = $cf::CFG{bind_addresses} || [[undef, 13327]];
11 LocalPort => cf::settings->csport,
12 Listen => 1,
13 Blocking => 0, # bugfix workaround for Event calling handler twice :(
14 ReuseAddr => 1;
15 11
16if (!$LISTEN) { 12for (@$BIND) {
17 # extension yes, completely stupid, not yet 13 my ($host, $port) = @$_;
18 warn "unable to establish listen socket, exiting.\n"; 14 warn "listening on $host:$port\n";
19 exit (2);
20}
21 15
22Event->io ( 16 tcp_server $host, $port, sub {
23 reentrant => 0, 17 my ($fh, $host, $port) = @_
24 fd => $LISTEN,
25 nice => 1,
26 poll => 'r',
27 data => cf::WF_AUTOCANCEL,
28 cb => sub {
29 my ($fh, $peername) = $LISTEN->accept
30 or return; 18 or return;
31 19
32 my $fd = fileno $fh; 20 my $fd = fileno $fh;
33 my $host = inet_ntoa +(sockaddr_in $peername)[1];
34 21
35 warn "new connection from $host\n"; 22 warn "new connection from [$host]:$port\n";
36 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#
37 cf::client::create $fd, $host; 29 cf::client::create $fd, $host;
30 undef $fh;#d#
31 };#d#d
38 }, 32 };
39); 33}
40 34

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines