Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
/builds/wireshark/wireshark/ringbuffer.h
Go to the documentation of this file.
1
12#ifndef __RINGBUFFER_H__
13#define __RINGBUFFER_H__
14
15#include <wireshark.h>
16#include <writecap/pcapio.h>
17
18#define RINGBUFFER_UNLIMITED_FILES 0
19/* Minimum number of ringbuffer files */
20#define RINGBUFFER_MIN_NUM_FILES 0
21/* Maximum number of ringbuffer files */
22/* Avoid crashes on very large numbers. Should be a power of 10 */
23#define RINGBUFFER_MAX_NUM_FILES 100000
24/* Maximum number for FAT filesystems */
25#define RINGBUFFER_WARN_NUM_FILES 65535
26
39int ringbuf_init(const char *capture_name, unsigned num_files, bool group_read_access,
40 const char *compress_type, bool nametimenum);
41
50
55const char *ringbuf_current_filename(void);
56
64
73bool ringbuf_switch_file(ws_cwstream* *pdh, char **save_file, int *save_file_fd,
74 int *err);
75
85bool ringbuf_libpcap_dump_close(char **save_file, int *err);
86
92void ringbuf_free(void);
93
100
110bool ringbuf_set_print_name(char *name, int *err);
111
112#endif /* ringbuffer.h */
ws_cwstream * ringbuf_init_libpcap_fdopen(int *err)
Initialize a libpcap dump file for the ringbuffer. Initializes a libpcap dump file for writing captur...
bool ringbuf_switch_file(ws_cwstream **pdh, char **save_file, int *save_file_fd, int *err)
Switch the ringbuffer dump file.
int ringbuf_init(const char *capture_name, unsigned num_files, bool group_read_access, const char *compress_type, bool nametimenum)
Initialize the ringbuffer system.
void ringbuf_error_cleanup(void)
Clean up any errors related to the ringbuffer system.
void ringbuf_free(void)
Frees all memory allocated by the ringbuffer.
bool ringbuf_libpcap_dump_close(char **save_file, int *err)
Close the ringbuffer dump file.
const char * ringbuf_current_filename(void)
Get the current filename used by the ringbuffer.
bool ringbuf_is_initialized(void)
Check if the ringbuffer system is initialized.
bool ringbuf_set_print_name(char *name, int *err)
Set the name for the ringbuffer.
Definition file_compressed.c:152