This commit is contained in:
Atlante45 2015-09-11 00:49:57 +02:00
parent 8c1fb67825
commit 449d6a04d8
3 changed files with 5 additions and 5 deletions

View file

@ -3042,7 +3042,7 @@ int Application::sendNackPackets() {
++it;
}
if (nackPacketList.getNumPackets()) {
if (nackPacketList->getNumPackets()) {
packetsSent += nackPacketList->getNumPackets();
// send the packet list

View file

@ -38,11 +38,11 @@ public:
Retransmission,
Duplicate,
NumEvent
NumEvents
};
// construct a vector for the events of the size of our Enum - default value is zero
std::vector<int> events = std::vector<int>((int) Event::NumEvent, 0);
std::vector<int> events = std::vector<int>((int) Event::NumEvents, 0);
// packet counts and sizes
int sentPackets { 0 };