Package 

Enum PseudoTcpState

  • All Implemented Interfaces:
    java.io.Serializable , java.lang.Comparable

    
    public enum PseudoTcpState
    
                        

    TCP states defined for pseudoTCP

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      TCP_LISTEN

      Initial state, can accept connection

      TCP_SYN_SENT

      SYN sent to remote peer, wits for SYN

      TCP_SYN_RECEIVED

      SYN received from remote peer, sends back SYN

      TCP_ESTABLISHED

      SYN sent and received - connection established

      TCP_CLOSED

      Closed state. In current implementation reached on error or explicite by close method with force option TODO: closing procedure

    • Method Summary

      Modifier and Type Method Description
      static Array<PseudoTcpState> values()
      static PseudoTcpState valueOf(String name)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait