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.5 by root, Sat Dec 23 03:38:43 2006 UTC vs.
Revision 1.13 by root, Sun Nov 29 10:52:14 2009 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 sockect, exiting.\n"; 14 warn "listening on $host:$port\n";
19 exit (2); 15
16 tcp_server $host, $port, sub {
17 my ($fh, $host, $port) = @_
18 or return;
19
20 warn "new connection from [$host]:$port\n";
21
22 # HACK to avoid blocking on common files on log-in.
23 # remove once async
24 cf::async {#d#
25 warn "HACK ext/tcp.ext: $cf::LOCALDIR/crossfiremail\n" and Coro::AIO::aio_load "$cf::LOCALDIR/crossfiremail", my $dummy;#d#
26 cf::client::create fileno $fh, $host;
27 };#d#d
28 };
20} 29}
21 30
22Event->io (fd => $LISTEN, nice => 1, poll => 'r', data => cf::WF_AUTOCANCEL, cb => sub {
23 my ($fh, $peername) = $LISTEN->accept
24 or return;
25
26 my $fd = fileno $fh;
27 my $host = inet_ntoa +(sockaddr_in $peername)[1];
28
29 warn "new connection from $host\n";
30
31 cf::client::create $fd, $host;
32});

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines