Software /
code /
prosody
Comparison
core/s2smanager.lua @ 3952:f5d2400ca127
s2smanager: Add a missing semi-colon
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 24 Dec 2010 04:48:38 +0000 |
parent | 3951:b8d930c21a3a |
child | 3953:174edf85a916 |
comparison
equal
deleted
inserted
replaced
3951:b8d930c21a3a | 3952:f5d2400ca127 |
---|---|
314 (host_session.log or log)("info", "Beginning new connection attempt to %s (%s:%d)", host_session.to_host, connect_host, connect_port); | 314 (host_session.log or log)("info", "Beginning new connection attempt to %s (%s:%d)", host_session.to_host, connect_host, connect_port); |
315 -- Ok, we're going to try to connect | 315 -- Ok, we're going to try to connect |
316 | 316 |
317 local from_host, to_host = host_session.from_host, host_session.to_host; | 317 local from_host, to_host = host_session.from_host, host_session.to_host; |
318 | 318 |
319 local conn, handler = socket.tcp() | 319 local conn, handler = socket.tcp(); |
320 | 320 |
321 if not conn then | 321 if not conn then |
322 log("warn", "Failed to create outgoing connection, system error: %s", handler); | 322 log("warn", "Failed to create outgoing connection, system error: %s", handler); |
323 return false, handler; | 323 return false, handler; |
324 end | 324 end |