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

(-)a/src/applications/packet-sink/packet-sink.cc (-1 / +1 lines)
 Lines 85-91   void PacketSink::StartApplication() / Link Here 
85
  // Create the socket if not already
85
  // Create the socket if not already
86
  if (!m_socket)
86
  if (!m_socket)
87
    {
87
    {
88
      m_socket = Socket::CreateSocket (GetNode(), m_tid);
88
      m_socket = Socket::CreateSocket (GetNode(), m_tid.GetName ().c_str());
89
      m_socket->Bind (m_local);
89
      m_socket->Bind (m_local);
90
      m_socket->Listen (0);
90
      m_socket->Listen (0);
91
    }
91
    }
(-)a/src/core/type-id.h (-1 / +1 lines)
 Lines 96-102   public: Link Here 
96
   * No two instances can share the same name. The name is expected to be
96
   * No two instances can share the same name. The name is expected to be
97
   * the full c++ typename of associated c++ object.
97
   * the full c++ typename of associated c++ object.
98
   */
98
   */
99
  TypeId (const char * name);
99
  explicit TypeId (const char * name);
100
100
101
  /**
101
  /**
102
   * \returns the parent of this TypeId
102
   * \returns the parent of this TypeId

Return to bug 281