aboutsummaryrefslogtreecommitdiffstats
path: root/randpkt_core/randpkt_core.h
blob: dd1ff49860d2006c4936bed5eb12e46f14e9127a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * randpkt_core.h
 * ---------
 * Creates random packet traces. Useful for debugging sniffers by testing
 * assumptions about the veracity of the data found in the packet.
 *
 * Copyright (C) 1999 by Gilbert Ramirez <gram@alumni.rice.edu>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later*/

#ifndef __RANDPKT_CORE_H__
#define __RANDPKT_CORE_H__

#include <glib.h>
#include "wiretap/wtap.h"

typedef struct {
	const char*  abbrev;
	const char*  longname;
	int          produceable_type;
	int          sample_wtap_encap;
	guint8*      sample_buffer;
	int          sample_length;
	guint8*      pseudo_buffer;
	guint        pseudo_length;
	wtap_dumper* dump;
	const char*  filename;
	guint        produce_max_bytes;

} randpkt_example;

/* Return the number of active examples */
guint randpkt_example_count(void);

/* Return the list of the active examples */
void randpkt_example_list(char*** abbrev_list, char*** longname_list);

/* Parse command-line option "type" and return enum type */
int randpkt_parse_type(char *string);

/* Find pkt_example record and return pointer to it */
randpkt_example* randpkt_find_example(int type);

/* Init a new example */
int randpkt_example_init(randpkt_example* example, char* produce_filename, int produce_max_bytes);

/* Loop the packet generation */
void randpkt_loop(randpkt_example* example, guint64 produce_count);

/* Close the current example */
gboolean randpkt_example_close(randpkt_example* example);

#endif

/*
 * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
 *
 * Local variables:
 * c-basic-offset: 8
 * tab-width: 8
 * indent-tabs-mode: t
 * End:
 *
 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
 * :indentSize=8:tabSize=8:noTabs=false:
 */