View | Details | Raw Unified | Return to bug 1806
Collapse All | Expand All

(-)a/helper/ccn-client-helper.cc (+11 lines)
 Lines 176-179    Link Here 
176
    }
176
    }
177
  CopyFile (from, vto);
177
  CopyFile (from, vto);
178
}
178
}
179
180
/**
181
 * Reset environmental variables for the main binary for this application.
182
 */
183
void 
184
CcnClientHelper::ResetEnvironment (void)
185
{
186
  m_files.clear();
187
  DceApplicationHelper::ResetEnvironment();
179
}
188
}
189
190
}
(-)a/helper/ccn-client-helper.h (+7 lines)
 Lines 14-19    Link Here 
14
  virtual ApplicationContainer Install (NodeContainer c);
14
  virtual ApplicationContainer Install (NodeContainer c);
15
  void AddFile (std::string from, std::string to);
15
  void AddFile (std::string from, std::string to);
16
16
17
  /**
18
   * Reset environmental variables for the main binary for this application.
19
   */
20
  void ResetEnvironment (void);
21
17
private:
22
private:
18
  std::string GetKeystoreDir (void);
23
  std::string GetKeystoreDir (void);
19
  void CreateKeystore ();
24
  void CreateKeystore ();
 Lines 23-28    Link Here 
23
28
24
  void CopyRealFileToVirtual (int nodeId, std::string from, std::string to);
29
  void CopyRealFileToVirtual (int nodeId, std::string from, std::string to);
25
30
31
26
};
32
};
33
27
}
34
}
28
#endif // CCN_HELPER_H
35
#endif // CCN_HELPER_H

Return to bug 1806