SDP: protect against out of bounds access
[metze/wireshark/wip.git] / capture_info.h
index 286dce12c09b36cbf996eff67b7445e467f87787..46bd72aade12c8785c9aa27e6e484008ceb96227 100644 (file)
@@ -31,7 +31,7 @@
 #define __CAPTURE_INFO_H__
 
 #include "capture_opts.h"
-#include "capture_session.h"
+#include <capchild/capture_session.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -43,8 +43,8 @@ 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);
 
-/* new records arrived - read from wtap, count */
-extern void capture_info_new_records(int to_read);
+/* new packets arrived - read from wtap, count */
+extern void capture_info_new_packets(int to_read);
 
 /* close the info - close wtap, destroy dialog */
 extern void capture_info_close(void);
@@ -80,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:
+ */