TODO packet-kerberos: dissect non-ntstatus PA-PW-SALT fields
[metze/wireshark/wip.git] / ui / capture.h
index 6aaa5035bebfe43d5ee6fc482b0b52965ddba649..d4de9efe09b68ad305a3b184a397f0a7f26c16e9 100644 (file)
@@ -5,19 +5,7 @@
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
 /* This file should only be included if libpcap is present */
@@ -30,7 +18,8 @@
  */
 
 #include "capture_opts.h"
-#include <capchild/capture_session.h>
+#include "capture_info.h"
+#include "capchild/capture_session.h"
 
 #ifdef __cplusplus
 extern "C" {
@@ -55,18 +44,19 @@ extern void
 capture_callback_add(capture_callback_t func, gpointer user_data);
 
 extern void
-capture_callback_remove(capture_callback_t func);
+capture_callback_remove(capture_callback_t func, gpointer user_data);
 
 /**
  * Start a capture session.
  *
  * @param capture_opts the numerous capture options
  * @param cap_session a handle for the capture session
+ * @param cap_data a struct with capture info data
  * @param update_cb update screen
  * @return TRUE if the capture starts successfully, FALSE otherwise.
  */
 extern gboolean
-capture_start(capture_options *capture_opts, capture_session *cap_session, void(*update_cb)(void));
+capture_start(capture_options *capture_opts, capture_session *cap_session, info_data_t* cap_data, void(*update_cb)(void));
 
 /** Stop a capture session (usually from a menu item). */
 extern void
@@ -88,7 +78,7 @@ typedef struct if_stat_cache_s if_stat_cache_t;
  * @param capture_opts A structure containing options for the capture.
  * @return A pointer to the statistics state data.
  */
-extern if_stat_cache_t * capture_stat_start(capture_options *capture_opts);
+extern WS_RETNONNULL if_stat_cache_t * capture_stat_start(capture_options *capture_opts);
 
 /**
  * Fetch capture statistics, similar to pcap_stats().
@@ -106,3 +96,16 @@ void capture_stat_stop(if_stat_cache_t *sc);
 #endif /* __cplusplus */
 
 #endif /* capture.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:
+ */