removed unused private field moduleId

master
Emanuel Vintila 2017-12-01 13:42:44 +01:00 committed by Nicholas Brown
parent 7cb7a5eeda
commit 453a2bd718
2 changed files with 1 additions and 2 deletions

View File

@ -45,7 +45,7 @@ using namespace std;
*/
IpfixReceiverUdpIpV4::IpfixReceiverUdpIpV4(int port, std::string ipAddr,
const uint32_t buffer, unsigned int moduleId)
: statReceivedPackets(0), moduleId(moduleId)
: statReceivedPackets(0)
{
receiverPort = port;

View File

@ -43,7 +43,6 @@ class IpfixReceiverUdpIpV4 : public IpfixReceiver, Sensor {
private:
int listen_socket;
uint32_t statReceivedPackets; /**< number of received packets */
unsigned int moduleId;
};
#endif