ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/tcp.ext
Revision: 1.17
Committed: Tue May 4 21:45:42 2010 UTC (14 years, 1 month ago) by root
Branch: MAIN
Changes since 1.16: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl # mandatory
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 AnyEvent::Socket;
9
10 our $BIND = $cf::CFG{bind_addresses} || [[undef, 13327]];
11 our @LISTENERS;
12
13 for (@$BIND) {
14 my ($host, $port) = @$_;
15 cf::info "listening on ", (format_hostport $host, $port), "\n";
16
17 push @LISTENERS, tcp_server $host, $port, sub {
18 my ($fh, $host, $port) = @_
19 or return;
20
21 cf::info "new connection from ", (format_hostport $host, $port), "\n";
22
23 cf::client::create fileno $fh, $host;
24 };
25 }
26