public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
3af98bee120cb855ca6bacb95359ea00a3f67f46 blob 742 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
30
31
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright Red Hat
 * Author: David Gibson <david@gibson.dropbear.id.au>
 *
 * ICMP flow tracking data structures
 */
#ifndef ICMP_FLOW_H
#define ICMP_FLOW_H

#include "flow.h"

/**
 * struct icmp_ping_flow - Descriptor for a flow of ping requests/replies
 * @f:		Generic flow information
 * @seq:	Last sequence number sent to tap, host order, -1: not sent yet
 * @sock:	"ping" socket
 * @ts:		Last associated activity from tap, seconds
 */
struct icmp_ping_flow {
	/* Must be first element */
	struct flow_common f;

	int seq;
	int sock;
	time_t ts;
};

bool icmp_ping_timer(const struct ctx *c, const struct icmp_ping_flow *pingf,
		     const struct timespec *now);

#endif /* ICMP_FLOW_H */
debug log:

solving 3af98be ...
found 3af98be in https://archives.passt.top/passt-dev/20260219184454.1501389-1-pefoley@google.com/
found fb93801 in https://passt.top/passt
preparing index
index prepared:
100644 fb93801d946ad5aafba2c8275a718b5d445cd421	icmp_flow.h

applying [1/1] https://archives.passt.top/passt-dev/20260219184454.1501389-1-pefoley@google.com/
diff --git a/icmp_flow.h b/icmp_flow.h
index fb93801..3af98be 100644

Checking patch icmp_flow.h...
Applied patch icmp_flow.h cleanly.

index at:
100644 3af98bee120cb855ca6bacb95359ea00a3f67f46	icmp_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).