public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 1afc1e52e5e0275affe9906efddaa6eb3b59521e 589 bytes (raw)

 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
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright Red Hat
 * Author: David Gibson <david@gibson.dropbear.id.au>
 *
 * Tracking for logical "flows" of packets.
 */
#ifndef FLOW_H
#define FLOW_H

enum flow_type {
	FLOW_NONE = 0,
	FLOW_TCP,
	FLOW_TCP_SPLICE,
	FLOW_MAX = FLOW_TCP_SPLICE,
};

extern const char *flow_type_str[];
#define FLOW_TYPE(f)							\
        ((f)->type <= FLOW_MAX ? flow_type_str[(f)->type] : "?")

/**
 * struct flow_common - Common fields for packet flows
 * @type:	Type of packet flow
 */
struct flow_common {
	enum flow_type		type;
};

#endif /* FLOW_H */

debug log:

solving 1afc1e5 ...
found 1afc1e5 in https://archives.passt.top/passt-dev/20230828054146.48673-2-david@gibson.dropbear.id.au/

applying [1/1] https://archives.passt.top/passt-dev/20230828054146.48673-2-david@gibson.dropbear.id.au/
diff --git a/flow.h b/flow.h
new file mode 100644
index 0000000..1afc1e5

Checking patch flow.h...
Applied patch flow.h cleanly.

index at:
100644 1afc1e52e5e0275affe9906efddaa6eb3b59521e	flow.h

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).