ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/tcp.ext
Revision: 1.11
Committed: Mon May 5 09:03:46 2008 UTC (16 years ago) by root
Branch: MAIN
CVS Tags: rel-2_54, rel-2_55
Changes since 1.10: +2 -2 lines
Log Message:
hack to avoid most syncopoints on log-in

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
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
5     # is unknown as of today.
6    
7     use Socket;
8     use IO::Socket::INET;
9    
10     our $LISTEN = new IO::Socket::INET
11     LocalPort => cf::settings->csport,
12     Listen => 1,
13 root 1.9 Blocking => 0,
14 root 1.1 ReuseAddr => 1;
15    
16     if (!$LISTEN) {
17     # extension yes, completely stupid, not yet
18 root 1.7 warn "unable to establish listen socket, exiting.\n";
19 root 1.1 exit (2);
20     }
21    
22 root 1.8 our $LISTENER = EV::io $LISTEN, EV::READ, sub {
23     my ($fh, $peername) = $LISTEN->accept
24     or return;
25 root 1.1
26 root 1.8 my $fd = fileno $fh;
27     my $host = inet_ntoa +(sockaddr_in $peername)[1];
28 root 1.1
29 root 1.8 warn "new connection from $host\n";
30 root 1.6
31 root 1.10 # HACK to avoid blocking on common files on log-in.
32     # remove once async
33     cf::async {#d#
34 root 1.11 warn "HACK ext/tcp.ext: $cf::CONFDIR/$_\n" and Coro::AIO::aio_load "$cf::CONFDIR/$_", my $dummy for qw(rules news motd);#d#
35     warn "HACK ext/tcp.ext: $cf::LOCALDIR/crossfiremail\n" and Coro::AIO::aio_load "$cf::LOCALDIR/crossfiremail", my $dummy;#d#
36 root 1.8 cf::client::create $fd, $host;
37 root 1.10 undef $fh;#d#
38     };#d#d
39 root 1.8 };
40 root 1.1