aboutsummaryrefslogtreecommitdiffstats
path: root/epan/sequence_analysis.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-09-21 23:20:03 -0400
committerAnders Broman <a.broman58@gmail.com>2017-09-22 04:49:48 +0000
commit5f667694d3bbd57f13c26d3588d5671dfd30d09a (patch)
treee3dbdd8cf9c62acc73b51bc3895ed8b6f3f14ca8 /epan/sequence_analysis.h
parent620d54b1e3a4fcad1994409013f6a5b2b76913b4 (diff)
Add Flow Graph functionality to TShark
Add flow graph functionality to tshark through -z option. Output is same as ASCII format saved from GUI. Change-Id: Iee0bfea7215858e6488b4728581be28287e9ea1a Reviewed-on: https://code.wireshark.org/review/23652 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/sequence_analysis.h')
-rw-r--r--epan/sequence_analysis.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/sequence_analysis.h b/epan/sequence_analysis.h
index 68af7f5c68..64b0a31be3 100644
--- a/epan/sequence_analysis.h
+++ b/epan/sequence_analysis.h
@@ -38,6 +38,7 @@
#include "packet_info.h"
#include "tap.h"
#include "address.h"
+#include "wsutil/file_util.h"
#ifdef __cplusplus
extern "C" {
@@ -202,12 +203,11 @@ WS_DLL_PUBLIC void sequence_analysis_free_nodes(seq_analysis_info_t *sainfo);
/** Write an ASCII version of the sequence diagram to a file.
*
- * @param pathname Pathname of the file to write.
+ * @param of File to write.
* @param sainfo Sequence analysis information.
* @param first_node Start drawing at this node.
- * @return TRUE on success, FALSE on failure.
*/
-WS_DLL_PUBLIC gboolean sequence_analysis_dump_to_file(const char *pathname, seq_analysis_info_t *sainfo, unsigned int first_node);
+WS_DLL_PUBLIC void sequence_analysis_dump_to_file(FILE *of, seq_analysis_info_t *sainfo, unsigned int first_node);
#ifdef __cplusplus
}