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.6 by root, Sun Jan 21 21:28:27 2007 UTC vs.
Revision 1.20 by root, Fri Feb 3 03:01:45 2012 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 10CONF 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) { 12our @LISTENERS;
17 # extension yes, completely stupid, not yet 13
18 warn "unable to establish listen sockect, exiting.\n"; 14for (@$BIND_ADDRESSES) {
19 exit (2); 15 my ($host, $port) = @$_;
16 cf::info "listening on ", (format_hostport $host, $port), "\n";
17
18 push @LISTENERS, tcp_server $host, $port, sub {
19 my ($fh, $host, $port) = @_
20 or return;
21
22 my $lhost = AnyEvent::Socket::format_address
23 +(AnyEvent::Socket::unpack_sockaddr getsockname $fh)[1];
24
25 cf::info "new connection from ", (format_hostport $host, $port), "\n"
26 if $lhost ne $host; # do not log connections from the host, e.g. for watchdogs
27
28 cf::client::create fileno $fh, $host;
29 };
20} 30}
21 31
22Event->io (
23 reentrant => 0,
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;
31
32 my $fd = fileno $fh;
33 my $host = inet_ntoa +(sockaddr_in $peername)[1];
34
35 warn "new connection from $host\n";
36
37 cf::client::create $fd, $host;
38 },
39);
40

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines