patch-output_h 814 B

12345678910111213141516171819202122
  1. --- nmap-6.25.orig/output.h 2012-08-14 18:36:25.000000000 +0200
  2. +++ nmap-6.25/output.h 2013-07-12 14:06:07.000000000 +0200
  3. @@ -226,6 +226,10 @@ std::string protect_xml(const std::strin
  4. void printscriptresults(ScriptResults *scriptResults, stype scantype);
  5. void printhostscriptresults(Target *currenths);
  6. +
  7. +/*This is a helper function to determine the ordering of the script results
  8. + based on their id */
  9. +bool comparescriptids(ScriptResult first, ScriptResult second);
  10. #endif
  11. /* Print a table with traceroute hops. */
  12. @@ -253,8 +257,4 @@ void printfinaloutput();
  13. were found. */
  14. void printdatafilepaths();
  15. -/*This is a helper function to determine the ordering of the script results
  16. - based on their id */
  17. -bool comparescriptids(ScriptResult first, ScriptResult second);
  18. -
  19. #endif /* OUTPUT_H */