I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit 399575ab authored by zzz's avatar zzz
Browse files

i2ptunnel: Return error message from IRC client on failure to build tunnels

previously just closed the socket
parent 19e3122f
No related branches found
No related tags found
No related merge requests found
...@@ -137,7 +137,18 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase { ...@@ -137,7 +137,18 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase {
if (clientDest == null) if (clientDest == null)
throw new UnknownHostException("Could not resolve " + addr.getHostName()); throw new UnknownHostException("Could not resolve " + addr.getHostName());
int port = addr.getPort(); int port = addr.getPort();
i2ps = createI2PSocket(clientDest, port); try {
i2ps = createI2PSocket(clientDest, port);
} catch (RuntimeException re) {
// tunnel build failure
_log.error("Error connecting", re);
try {
String name = addr != null ? addr.getHostName() : "undefined";
String msg = ":" + name + " 499 you :" + re.getMessage() + "\r\n";
s.getOutputStream().write(DataHelper.getUTF8(msg));
} catch (IOException ioe) {}
throw re;
}
i2ps.setReadTimeout(readTimeout); i2ps.setReadTimeout(readTimeout);
StringBuffer expectedPong = new StringBuffer(); StringBuffer expectedPong = new StringBuffer();
DCCHelper dcc = _dccEnabled ? new DCC(s.getLocalAddress().getAddress()) : null; DCCHelper dcc = _dccEnabled ? new DCC(s.getLocalAddress().getAddress()) : null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment