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.10 by root, Mon May 5 09:01:58 2008 UTC vs.
Revision 1.19 by root, Fri Jan 21 19:45:08 2011 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# whether 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, 11our @LISTENERS;
12 Listen => 1,
13 Blocking => 0,
14 ReuseAddr => 1;
15 12
16if (!$LISTEN) { 13for (@$BIND) {
17 # extension yes, completely stupid, not yet 14 my ($host, $port) = @$_;
18 warn "unable to establish listen socket, exiting.\n"; 15 cf::info "listening on ", (format_hostport $host, $port), "\n";
19 exit (2); 16
17 push @LISTENERS, tcp_server $host, $port, sub {
18 my ($fh, $host, $port) = @_
19 or return;
20
21 my $lhost = AnyEvent::Socket::format_address
22 +(AnyEvent::Socket::unpack_sockaddr getsockname $fh)[1];
23
24 cf::info "new connection from ", (format_hostport $host, $port), "\n"
25 if $lhost ne $host; # do not log connections from the host, e.g. for watchdogs
26
27 cf::client::create fileno $fh, $host;
28 };
20} 29}
21 30
22our $LISTENER = EV::io $LISTEN, EV::READ, 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 # HACK to avoid blocking on common files on log-in.
32 # remove once async
33 cf::async {#d#
34 warn "HACK: $cf::CONFDIR/$_", Coro::AIO::aio_load "$cf::CONFDIR/$_", my $dummy for qw(rules news motd);#d#
35 warn "HACK: $cf::VARDIR/crossfiremail", Coro::AIO::aio_load "$cf::VARDIR/crossfiremail", my $dummy;#d#
36 cf::client::create $fd, $host;
37 undef $fh;#d#
38 };#d#d
39};
40

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines