Changeset 88e7d60
- Timestamp:
- Dec 4, 2011 6:49:50 PM (9 years ago)
- Branches:
- master
- Children:
- 489a0ea
- Parents:
- 0d145fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelIRCClient.java
r0d145fc r88e7d60 10 10 import java.util.StringTokenizer; 11 11 12 import net.i2p.I2PException; 12 13 import net.i2p.client.streaming.I2PSocket; 13 14 import net.i2p.data.Base32; … … 113 114 Thread out = new I2PAppThread(new IrcOutboundFilter(s,i2ps, expectedPong, _log, dcc), "IRC Client " + __clientId + " out", true); 114 115 out.start(); 115 } catch ( Exception ex) {116 } catch (I2PException ex) { 116 117 if (_log.shouldLog(Log.ERROR)) 117 118 _log.error("Error connecting", ex); 119 //l.log("Error connecting: " + ex.getMessage()); 120 closeSocket(s); 121 if (i2ps != null) { 122 synchronized (sockLock) { 123 mySockets.remove(sockLock); 124 } 125 } 126 } catch (Exception ex) { 127 // generally NoRouteToHostException 128 if (_log.shouldLog(Log.WARN)) 129 _log.warn("Error connecting", ex); 118 130 //l.log("Error connecting: " + ex.getMessage()); 119 131 closeSocket(s);
Note: See TracChangeset
for help on using the changeset viewer.