STUN: add TCP specific methods and attribute
[metze/wireshark/wip.git] / capture_info.h
index 98c8242fb3e6ae18d0b9294c72ec9427fbae0024..46bd72aade12c8785c9aa27e6e484008ceb96227 100644 (file)
@@ -1,8 +1,6 @@
 /* capture_info.h
  * capture info functions
  *
- * $Id$
- *
  * Wireshark - Network traffic analyzer
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
 #define __CAPTURE_INFO_H__
 
 #include "capture_opts.h"
+#include <capchild/capture_session.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif /* __cplusplus */
 
 /* open the info - init values (wtap, counts), create dialog */
-extern void capture_info_open(capture_options *capture_opts);
+extern void capture_info_open(capture_session *cap_session);
 
 /* new file arrived - (eventually close old wtap), open wtap */
 extern gboolean capture_info_new_file(const char *new_filename);
@@ -65,9 +64,8 @@ typedef struct {
 
 
 /** Create the capture info dialog */
-extern void capture_info_ui_create(
-capture_info    *cinfo,
-capture_options        *capture_opts);
+extern void
+capture_info_ui_create(capture_info *cinfo, capture_session *cap_session);
 
 /** Update the capture info counters in the dialog */
 extern void capture_info_ui_update(
@@ -82,3 +80,16 @@ capture_info    *cinfo);
 #endif /* __cplusplus */
 
 #endif /* capture_info.h */
+
+/*
+ * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */