This commit is contained in:
zzz
2011-06-18 19:41:25 +00:00
parent 67825a7668
commit 66aec13ed6

View File

@ -73,12 +73,12 @@ import net.i2p.util.Log;
* Todo: Most events are not listened to elsewhere, so error propagation is poor * Todo: Most events are not listened to elsewhere, so error propagation is poor
*/ */
public class I2PTunnel implements Logging, EventDispatcher { public class I2PTunnel implements Logging, EventDispatcher {
private Log _log; private final Log _log;
private EventDispatcherImpl _event; private final EventDispatcherImpl _event;
private I2PAppContext _context; private final I2PAppContext _context;
private static long __tunnelId = 0; private static long __tunnelId = 0;
private long _tunnelId; private final long _tunnelId;
private Properties _clientOptions; private final Properties _clientOptions;
private final List<I2PSession> _sessions; private final List<I2PSession> _sessions;
public static final int PACKET_DELAY = 100; public static final int PACKET_DELAY = 100;