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.15 by root, Tue Mar 16 20:37:54 2010 UTC vs.
Revision 1.16 by root, Thu Apr 29 07:32:34 2010 UTC

10our $BIND = $cf::CFG{bind_addresses} || [[undef, 13327]]; 10our $BIND = $cf::CFG{bind_addresses} || [[undef, 13327]];
11our @LISTENERS; 11our @LISTENERS;
12 12
13for (@$BIND) { 13for (@$BIND) {
14 my ($host, $port) = @$_; 14 my ($host, $port) = @$_;
15 warn "listening on ", (format_hostport $host, $port), "\n"; 15 cf::info "listening on ", (format_hostport $host, $port), "\n";
16 16
17 push @LISTENERS, tcp_server $host, $port, sub { 17 push @LISTENERS, tcp_server $host, $port, sub {
18 my ($fh, $host, $port) = @_ 18 my ($fh, $host, $port) = @_
19 or return; 19 or return;
20 20
21 warn "new connection from ", (format_hostport $host, $port), "\n"; 21 cf::info "new connection from ", (format_hostport $host, $port), "\n";
22 22
23 cf::client::create fileno $fh, $host; 23 cf::client::create fileno $fh, $host;
24 }; 24 };
25} 25}
26 26

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines