Use standard stdint.h spelling for integer types
This commit is contained in:
@@ -855,7 +855,7 @@ private:
|
||||
void HandleRead (Ptr<Socket> socket);
|
||||
virtual void DoRun (void);
|
||||
|
||||
u_int16_t m_count; //!< Number of packets received.
|
||||
uint16_t m_count; //!< Number of packets received.
|
||||
std::vector<std::pair<Ptr<Socket>, bool> > m_sendSocks; //!< Sending sockets.
|
||||
DataRate m_dataRate; //!< Data rate.
|
||||
uint16_t m_packetSize; //!< Packet size.
|
||||
|
||||
@@ -251,7 +251,7 @@ CarrierAggregationTestCase::BuildNameString (uint16_t nUser, uint16_t dist, uint
|
||||
return oss.str ();
|
||||
}
|
||||
|
||||
CarrierAggregationTestCase::CarrierAggregationTestCase (uint16_t nUser, uint16_t dist, uint32_t dlbandwidth, uint32_t ulBandwidth, uint numberOfComponentCarriers)
|
||||
CarrierAggregationTestCase::CarrierAggregationTestCase (uint16_t nUser, uint16_t dist, uint32_t dlbandwidth, uint32_t ulBandwidth, uint32_t numberOfComponentCarriers)
|
||||
: TestCase (BuildNameString (nUser, dist, dlbandwidth, ulBandwidth, numberOfComponentCarriers)),
|
||||
m_nUser (nUser),
|
||||
m_dist (dist),
|
||||
|
||||
@@ -57,7 +57,7 @@ public:
|
||||
* \param ulBandwidth the UL badnwidth
|
||||
* \param numberOfComponentCarriers number of component carriers to be used in test configuration
|
||||
*/
|
||||
CarrierAggregationTestCase (uint16_t nUser, uint16_t dist, uint32_t dlbandwidth, uint32_t ulBandwidth, uint numberOfComponentCarriers);
|
||||
CarrierAggregationTestCase (uint16_t nUser, uint16_t dist, uint32_t dlbandwidth, uint32_t ulBandwidth, uint32_t numberOfComponentCarriers);
|
||||
virtual ~CarrierAggregationTestCase ();
|
||||
/**
|
||||
* DL Scheduling function that is used in this test as callback function of DL scheduling trace
|
||||
|
||||
Reference in New Issue
Block a user