Package net.i2p.i2ptunnel
Class I2PTunnelIRCClient
java.lang.Object
net.i2p.util.EventDispatcherImpl
net.i2p.i2ptunnel.I2PTunnelTask
net.i2p.i2ptunnel.I2PTunnelClientBase
net.i2p.i2ptunnel.I2PTunnelIRCClient
- All Implemented Interfaces:
- Runnable,- EventDispatcher
Todo: Can we extend I2PTunnelClient instead and remove some duplicated code?
- 
Field SummaryFieldsFields inherited from class net.i2p.i2ptunnel.I2PTunnelClientBase_clientId, _context, _log, _ownDest, DEFAULT_CONNECT_TIMEOUT, dest, l, listenerReady, mySockets, PROP_USE_SSL, sockLock, sockMgr, ssFields inherited from class net.i2p.i2ptunnel.I2PTunnelTaskopen
- 
Constructor SummaryConstructorsConstructorDescriptionI2PTunnelIRCClient(int localPort, String destinations, Logging l, boolean ownDest, EventDispatcher notifyThis, I2PTunnel tunnel, String pkf) As of 0.9.20 this is fast, and does NOT connect the manager to the router, or open the local socket.
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidManage a connection in a separate thread.booleanclose(boolean forced) Note that the tunnel can be reopened after this by calling startRunning().voidoptionsUpdated(I2PTunnel tunnel) Update the dests then call super.voidActually open the local socket and start working on incoming connections.Methods inherited from class net.i2p.i2ptunnel.I2PTunnelClientBaseaddSubsession, buildSocketManager, buildSocketManager, buildSocketManager, buildSocketManager, closeSocket, createI2PSocket, createI2PSocket, createI2PSocket, destroy, getDefaultOptions, getDefaultOptions, getListenHost, getLocalPort, getSocketManager, getSocketManager, getSocketManager, killSharedClient, manageConnection, run, verifySocketManagerMethods inherited from class net.i2p.i2ptunnel.I2PTunnelTaskconnected, disconnected, errorOccurred, getId, getTunnel, isOpen, reportAbuse, routerDisconnected, setId, setName, setTunnel, toStringMethods inherited from class net.i2p.util.EventDispatcherImplattachEventDispatcher, detachEventDispatcher, getEventDispatcher, getEvents, getEventValue, ignoreEvents, notifyEvent, unIgnoreEvents, waitEventValue
- 
Field Details- 
readTimeoutprotected long readTimeout
- 
PROP_DCC- Since:
- 0.8.9
- See Also:
 
 
- 
- 
Constructor Details- 
I2PTunnelIRCClientpublic I2PTunnelIRCClient(int localPort, String destinations, Logging l, boolean ownDest, EventDispatcher notifyThis, I2PTunnel tunnel, String pkf) throws IllegalArgumentException As of 0.9.20 this is fast, and does NOT connect the manager to the router, or open the local socket. You MUST call startRunning() for that.- Parameters:
- destinations- peers we target, comma- or space-separated. Since 0.9.9, each dest may be appended with :port
- Throws:
- IllegalArgumentException- if the I2PTunnel does not contain valid config to contact the router
 
 
- 
- 
Method Details- 
clientConnectionRunDescription copied from class:I2PTunnelClientBaseManage a connection in a separate thread. This only works if you do not override manageConnection(). This is run in a thread from an unlimited-size thread pool, so it may block or run indefinitely.- Specified by:
- clientConnectionRunin class- I2PTunnelClientBase
 
- 
optionsUpdatedUpdate the dests then call super.- Overrides:
- optionsUpdatedin class- I2PTunnelClientBase
- Since:
- 0.9.9
 
- 
startRunningpublic void startRunning()Description copied from class:I2PTunnelClientBaseActually open the local socket and start working on incoming connections. *Must* be called by derived classes after initialization. (this wasn't actually true until 0.9.20) This will be fast if i2cp.delayOpen is true, but could take a LONG TIME if it is false, as it connects to the router and builds tunnels. Extending classes must check the value of boolean open after calling super.startRunning(), if false then something went wrong.- Overrides:
- startRunningin class- I2PTunnelClientBase
 
- 
closepublic boolean close(boolean forced) Description copied from class:I2PTunnelClientBaseNote that the tunnel can be reopened after this by calling startRunning(). This may not release all resources. In particular, the I2PSocketManager remains and it may have timer threads that continue running. To release all resources permanently, call destroy(). Does nothing if open is already false. Sets open = false but does not notifyAll().- Overrides:
- closein class- I2PTunnelClientBase
- Returns:
- success
 
 
-