View | Details | Raw Unified | Return to bug 132
Collapse All | Expand All

(-)a/src/internet-node/tcp-socket.cc (-1 / +1 lines)
 Lines 656-662   bool TcpSocket::ProcessPacketAction (Act Link Here 
656
    case SERV_NOTIFY:
656
    case SERV_NOTIFY:
657
      NS_LOG_LOGIC ("TcpSocket " << this <<" Action SERV_NOTIFY");
657
      NS_LOG_LOGIC ("TcpSocket " << this <<" Action SERV_NOTIFY");
658
      NS_LOG_LOGIC ("TcpSocket " << this << " Connected!");
658
      NS_LOG_LOGIC ("TcpSocket " << this << " Connected!");
659
      NotifyConnectionSucceeded ();
659
      NotifyNewConnectionCreated (this, fromAddress);
660
      m_connected = true; // ! This is bogus; fix when we clone the tcp
660
      m_connected = true; // ! This is bogus; fix when we clone the tcp
661
      m_endPoint->SetPeer (m_defaultAddress, m_defaultPort);
661
      m_endPoint->SetPeer (m_defaultAddress, m_defaultPort);
662
      //treat the connection orientation final ack as a newack
662
      //treat the connection orientation final ack as a newack

Return to bug 132