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