Example #1
0
 public override void Transmit(TCPConnection tCPConnection, TCPOctetStream tCPOctetStream)
 {
     tCPConnection.ProcessOctetStream(tCPOctetStream);
 }
Example #2
0
 protected void ChangeState(TCPConnection tCPConnection, TCPState tCPState)
 {
     tCPConnection.ChangeState(tCPState);
 }
Example #3
0
 public virtual void Transmit(TCPConnection tCPConnection, TCPOctetStream tCPOctetStream)
 {
     Console.WriteLine("------------------------------");
 }
Example #4
0
 public virtual void Send(TCPConnection tCPConnection)
 {
     Console.WriteLine("------------------------------");
 }
Example #5
0
 //被动打开
 public virtual void PassiveOpen(TCPConnection tCPConnection)
 {
     Console.WriteLine("------------------------------");
 }
Example #6
0
 public virtual void Synchronize(TCPConnection tCPConnection)
 {
     Console.WriteLine("------------------------------");
 }
Example #7
0
 public virtual void Acknowledge(TCPConnection tCPConnection)
 {
     Console.WriteLine("------------------------------");
 }