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
67
68
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_EVENT_H
#define CAPTURE_EVENT_H
#include <QEvent>
typedef struct _capture_session capture_session;
struct _packet_info;
class CaptureEvent
{
public:
enum Context {
#ifdef HAVE_LIBPCAP
Capture = 0x0001,
Update = 0x0100 | Capture,
Fixed = 0x0200 | Capture,
#endif
File = 0x0002,
Reload = 0x0100 | File,
Rescan = 0x0200 | File,
Save = 0x0400 | File,
Retap = 0x0800 | File,
Merge = 0x1000 | File
};
enum EventType {
Opened = 0x0001,
Started = 0x0002,
Finished = 0x0004,
Closing = 0x0008,
Closed = 0x0010,
Failed = 0x0020,
Stopped = 0x0040,
Flushed = 0x0080,
Prepared = 0x0100,
Continued = 0x0200,
Stopping = 0x0400
};
CaptureEvent(Context ctx, EventType evt);
CaptureEvent(Context ctx, EventType evt, QString file);
CaptureEvent(Context ctx, EventType evt, capture_session * session);
CaptureEvent(const CaptureEvent &ce);
Context captureContext() const;
EventType eventType() const;
QString filePath() const;
capture_session * capSession() const;
private:
Context _ctx;
EventType _evt;
QString _filePath;
capture_session * _session;
};
#endif // CAPTURE_EVENT_H
|