Bug 1838 - FlowMonitorHelper must not be copied.
This commit is contained in:
@@ -33,6 +33,7 @@ Bugs fixed
|
||||
- Bug 1786 - os << int64x64_t prints un-normalized fractional values
|
||||
- Bug 1821 - Setting an interface to Down state will cause various asserts in IPv6
|
||||
- Bug 1837 - AODV crashes when using multiple interfaces
|
||||
- Bug 1838 - FlowMonitorHelper must not be copied.
|
||||
|
||||
Release 3.19
|
||||
=============
|
||||
|
||||
@@ -80,6 +80,20 @@ public:
|
||||
Ptr<FlowClassifier> GetClassifier ();
|
||||
|
||||
private:
|
||||
/**
|
||||
* \brief Copy constructor
|
||||
*
|
||||
* Defined and unimplemented to avoid misuse
|
||||
*/
|
||||
FlowMonitorHelper (const FlowMonitorHelper&);
|
||||
/**
|
||||
* \brief Copy constructor
|
||||
*
|
||||
* Defined and unimplemented to avoid misuse
|
||||
* \returns
|
||||
*/
|
||||
FlowMonitorHelper& operator= (const FlowMonitorHelper&);
|
||||
|
||||
ObjectFactory m_monitorFactory; //!< Object factory
|
||||
Ptr<FlowMonitor> m_flowMonitor; //!< the FlowMonitor object
|
||||
Ptr<FlowClassifier> m_flowClassifier; //!< the FlowClassifier object
|
||||
|
||||
Reference in New Issue
Block a user