Is it possible to add "QoE monitor" in ns3.30 ? When I searched to download it from sourceforge, I found this Note "Currently the best approach to make QoE Monitor working with NS-3 consist of using Ubuntu 12.04 and NS-3.13." I tried to add a new module "qoe monitor" the same way I added Evalvid (Unpack the qoe-monitor.zip file inside the folder ns-3.30.1/src/, ./waf configure --enable-examples, ./waf build) and I got this error:
Waf: Entering directory `/home/hana/ns-allinone-3.30.1/ns-3.30.1/build'
Traceback (most recent call last):
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Scripting.py", line 119, in waf_entry_point
run_commands()
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Scripting.py", line 182, in run_commands
ctx=run_command(cmd_name)
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Scripting.py", line 173, in run_command
ctx.execute()
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Scripting.py", line 375, in execute
return execute_method(self)
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Build.py", line 93, in execute
self.execute_build()
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Build.py", line 96, in execute_build
self.recurse([self.run_dir])
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Context.py", line 126, in recurse
user_function(self)
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/wscript", line 895, in build
bld.recurse('src')
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Context.py", line 126, in recurse
user_function(self)
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/src/wscript", line 315, in build
bld.recurse(list(all_modules))
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/.waf3-2.0.18-ff4ae9f5cc05353d3dc3aeff8854ae69/waflib/Context.py", line 126, in recurse
user_function(self)
File "/home/hana/ns-allinone-3.30.1/ns-3.30.1/src/qoe-monitor/wscript", line 34, in build
headers = bld.new_task_gen(features=['ns3header'])
AttributeError: 'BuildContext' object has no attribute 'new_task_gen'
Excuse me if I made mistakes.