Actions
Task #3039
closedLaunch NLSR with explicit configuration file
Start date:
07/13/2015
Due date:
% Done:
100%
Estimated time:
Description
Currently, NLSR is launched using the configuration file in it's home directory implicitly as no filename argument is provided.
But, it is useful for debugging purposes if the full configuration filename is specified to differentiate it from other NLSR processes in "ps aux".
In ndn/nlsr.py
, change
NdnApplication.start(self, "nlsr -d")
to
NdnApplication.start(self, "nlsr -f {} &".format(self.confFile))
Actions