1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Add --resume from XML output. Closes #316. See #243

This commit is contained in:
dmiller
2016-12-06 02:55:55 +00:00
parent b87b0c7de0
commit b18d6fe5f7
7 changed files with 172 additions and 70 deletions

9
xml.h
View File

@@ -137,10 +137,10 @@ int xml_end_comment();
int xml_open_pi(const char *name);
int xml_close_pi();
int xml_open_start_tag(const char *name);
int xml_close_start_tag();
int xml_open_start_tag(const char *name, const bool write = true);
int xml_close_start_tag(const bool write = true);
int xml_close_empty_tag();
int xml_start_tag(const char *name);
int xml_start_tag(const char *name, const bool write = true);
int xml_end_tag();
int xml_attribute(const char *name, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
@@ -151,5 +151,8 @@ int xml_depth();
bool xml_tag_open();
bool xml_root_written();
char *xml_unescape(const char *str);
#endif