Uses of Class
net.i2p.router.CommSystemFacade.Status

Packages that use CommSystemFacade.Status
net.i2p.router The I2P router application handles the I2P network communication. 
net.i2p.router.transport The transport system allows the usage of communication layers that are below I2P in the stack, on which I2P messages are sent. 
net.i2p.router.transport.ntcp The NTCP transport allows passing I2P messages on top of TCP. 
net.i2p.router.transport.udp The UDP transport (also known as 'SSU transport') allows passing I2P messages on top of UDP. 
 

Uses of CommSystemFacade.Status in net.i2p.router
 

Methods in net.i2p.router that return CommSystemFacade.Status
 CommSystemFacade.Status CommSystemFacade.getStatus()
          Determine under what conditions we are remotely reachable.
static CommSystemFacade.Status CommSystemFacade.Status.merge(CommSystemFacade.Status oldStatus, CommSystemFacade.Status newStatus)
          merge the new Status with the old Status
static CommSystemFacade.Status CommSystemFacade.Status.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CommSystemFacade.Status[] CommSystemFacade.Status.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.i2p.router with parameters of type CommSystemFacade.Status
static CommSystemFacade.Status CommSystemFacade.Status.merge(CommSystemFacade.Status oldStatus, CommSystemFacade.Status newStatus)
          merge the new Status with the old Status
 

Uses of CommSystemFacade.Status in net.i2p.router.transport
 

Methods in net.i2p.router.transport that return CommSystemFacade.Status
abstract  CommSystemFacade.Status TransportImpl.getReachabilityStatus()
          Previously returned short, now enum as of 0.9.20
 CommSystemFacade.Status Transport.getReachabilityStatus()
          Previously returned short, now enum as of 0.9.20
 CommSystemFacade.Status TransportManager.getReachabilityStatus()
          Previously returned short, now enum as of 0.9.20
 CommSystemFacade.Status CommSystemFacadeImpl.getStatus()
           
 

Uses of CommSystemFacade.Status in net.i2p.router.transport.ntcp
 

Methods in net.i2p.router.transport.ntcp that return CommSystemFacade.Status
 CommSystemFacade.Status NTCPTransport.getReachabilityStatus()
          Maybe we should trust UPnP here and report OK if it opened the port, but for now we don't.
 

Uses of CommSystemFacade.Status in net.i2p.router.transport.udp
 

Methods in net.i2p.router.transport.udp that return CommSystemFacade.Status
 CommSystemFacade.Status UDPTransport.getReachabilityStatus()
          Previously returned short, now enum as of 0.9.20
 

Methods in net.i2p.router.transport.udp with parameters of type CommSystemFacade.Status
(package private)  void UDPTransport.setReachabilityStatus(CommSystemFacade.Status status)