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.2 by root, Fri Dec 15 19:59:19 2006 UTC vs.
Revision 1.15 by root, Tue Mar 16 20:37:54 2010 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, 11our @LISTENERS;
12 Listen => 1,
13 ReuseAddr => 1;
14 12
15if (!$LISTEN) { 13for (@$BIND) {
16 # extension yes, completely stupid, not yet 14 my ($host, $port) = @$_;
17 warn "unable to establish listen sockect, exiting.\n"; 15 warn "listening on ", (format_hostport $host, $port), "\n";
18 exit (2); 16
17 push @LISTENERS, tcp_server $host, $port, sub {
18 my ($fh, $host, $port) = @_
19 or return;
20
21 warn "new connection from ", (format_hostport $host, $port), "\n";
22
23 cf::client::create fileno $fh, $host;
24 };
19} 25}
20 26
21Event->io (fd => $LISTEN, poll => 'r', data => cf::WF_AUTOCANCEL, cb => sub {
22 my ($fh, $peername) = $LISTEN->accept
23 or return;
24
25 my $fd = fileno $fh;
26 my $host = inet_ntoa +(sockaddr_in $peername)[1];
27
28 warn "new connection from $host\n";
29
30 cf::add_client $fd, $host;
31});

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines