public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 231f6f0daead3364586f78828b66858590b81258 1079 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
32
33
34
35
36
37
38
39
40
41
42
43
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2021 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef ICMP_H
#define ICMP_H

#define ICMP_TIMER_INTERVAL		1000 /* ms */

struct ctx;

void icmp_sock_handler(const struct ctx *c, union epoll_ref ref,
		       uint32_t events, const struct timespec *now);
int icmp_tap_handler(const struct ctx *c,
		     int af, const void *saddr, const void *daddr,
		     const struct pool *p, const struct timespec *now);
void icmp_timer(const struct ctx *c, const struct timespec *ts);
void icmp_init(void);

/**
 * union icmp_epoll_ref - epoll reference portion for ICMP tracking
 * @v6:			Set for IPv6 sockets or connections
 * @u32:		Opaque u32 value of reference
 * @id:			Associated echo identifier, needed if bind() fails
 */
union icmp_epoll_ref {
	struct {
		uint32_t	v6:1,
				id:16;
	} icmp;
	uint32_t u32;
};

/**
 * struct icmp_ctx - Execution context for ICMP routines
 * @timer_run:		Timestamp of most recent timer run
 */
struct icmp_ctx {
	struct timespec timer_run;
};

#endif /* ICMP_H */

debug log:

solving 231f6f0 ...
found 231f6f0 in https://archives.passt.top/passt-dev/20230728094831.4097571-3-david@gibson.dropbear.id.au/
found f899e6d in https://passt.top/passt
preparing index
index prepared:
100644 f899e6d2d87f57de4a0b1d392c5187a52f4538ad	icmp.h

applying [1/1] https://archives.passt.top/passt-dev/20230728094831.4097571-3-david@gibson.dropbear.id.au/
diff --git a/icmp.h b/icmp.h
index f899e6d..231f6f0 100644

Checking patch icmp.h...
Applied patch icmp.h cleanly.

index at:
100644 231f6f0daead3364586f78828b66858590b81258	icmp.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).