doxy: suppress internet module warnings

This commit is contained in:
Tommaso Pecorella
2017-10-24 02:29:22 +02:00
parent e7f2786186
commit 6012bba067
2 changed files with 9 additions and 6 deletions

View File

@@ -838,7 +838,8 @@ GlobalRouter::ProcessSingleBroadcastLink (Ptr<NetDevice> nd, GlobalRoutingLSA *p
// case.
//
ClearBridgesVisited ();
Ipv4Address desigRtr = FindDesignatedRouterForLink (nd);
Ipv4Address desigRtr;
desigRtr = FindDesignatedRouterForLink (nd);
//
// Let's double-check that any designated router we find out on our
@@ -848,10 +849,10 @@ GlobalRouter::ProcessSingleBroadcastLink (Ptr<NetDevice> nd, GlobalRoutingLSA *p
{
Ipv4Address networkHere = addrLocal.CombineMask (maskLocal);
Ipv4Address networkThere = desigRtr.CombineMask (maskLocal);
NS_ABORT_MSG_UNLESS (networkHere == networkThere,
NS_ABORT_MSG_UNLESS (networkHere == networkThere,
"GlobalRouter::ProcessSingleBroadcastLink(): Network number confusion");
}
if (desigRtr == addrLocal)
if (desigRtr == addrLocal)
{
c.Add (nd);
NS_LOG_LOGIC ("Node " << node->GetId () << " elected a designated router");

View File

@@ -184,6 +184,8 @@ public:
/**
* \brief Constructor.
* \param congControl Congestion control type.
* \param seqToDrop sequence number to drop
* \param minRto minimum RTO
* \param msg Test description.
*/
TcpSsThreshRtoTest (TypeId &congControl, uint32_t seqToDrop, Time minRto, const std::string &msg);
@@ -210,9 +212,9 @@ protected:
private:
uint32_t m_bytesInFlight; //!< Store the number of bytes in flight
uint32_t m_bytesInFlightBeforeRto; //!< Store the number of bytes in flight before the RTO expiration
uint32_t m_ssThreshSocket; //<! the ssThresh as computed by the socket
uint32_t m_seqToDrop;
Time m_minRtoTime;
uint32_t m_ssThreshSocket; //!< the ssThresh as computed by the socket
uint32_t m_seqToDrop; //!< the sequence number to drop
Time m_minRtoTime; //!< the minimum RTO time
};
TcpSsThreshRtoTest::TcpSsThreshRtoTest (TypeId &congControl, uint32_t seqToDrop, Time minRto, const std::string &desc)