В чем разница между «ConnectionSuccess» и «ConnectionCreated» в сокете? - PullRequest
0 голосов
/ 02 мая 2020

Я видел исходный код реализации класса Socket в NS-3 и увидел, что есть две функции-члена:

  /**
   * \brief Notify through the callback (if set) that the connection has been
   *        established.
   */
  void NotifyConnectionSucceeded (void);

и

  /**
   * \brief Notify through the callback (if set) that a new connection has been
   *        created.
   * \param socket The socket receiving the new connection.
   * \param from The address of the node initiating the connection.
   */
  void NotifyNewConnectionCreated (Ptr<Socket> socket, const Address &from);

Итак, что является основным Разница между этими двумя функциями? и есть ли разница между "ConnectionSucceed" и "ConnectionCreated"?

...