Project

General

Profile

Task #3039

Updated by Vince Lehman about 8 years ago

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))

Back