passt: Relicense to GPL 2.0, or any later version
In practical terms, passt doesn't benefit from the additional
protection offered by the AGPL over the GPL, because it's not
suitable to be executed over a computer network.
Further, restricting the distribution under the version 3 of the GPL
wouldn't provide any practical advantage either, as long as the passt
codebase is concerned, and might cause unnecessary compatibility
dilemmas.
Change licensing terms to the GNU General Public License Version 2,
or any later version, with written permission from all current and
past contributors, namely: myself, David Gibson, Laine Stump, Andrea
Bolognani, Paul Holzinger, Richard W.M. Jones, Chris Kuhn, Florian
Weimer, Giuseppe Scrivano, Stefan Hajnoczi, and Vasiliy Ulyanov.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-04-05 18:11:44 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
2022-03-15 00:07:02 +00:00
|
|
|
* Copyright (c) 2022 Red Hat GmbH
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2022-03-25 23:05:31 +00:00
|
|
|
#ifndef TCP_SPLICE_H
|
|
|
|
#define TCP_SPLICE_H
|
|
|
|
|
2022-11-17 05:58:51 +00:00
|
|
|
struct tcp_splice_conn;
|
2024-02-28 11:25:04 +00:00
|
|
|
union sockaddr_inany;
|
2022-11-17 05:58:51 +00:00
|
|
|
|
2024-01-16 00:50:38 +00:00
|
|
|
void tcp_splice_sock_handler(struct ctx *c, union epoll_ref ref,
|
|
|
|
uint32_t events);
|
2023-09-29 05:50:19 +00:00
|
|
|
bool tcp_splice_conn_from_sock(const struct ctx *c,
|
2024-02-28 11:25:16 +00:00
|
|
|
uint8_t pif0, in_port_t dstport,
|
|
|
|
union flow *flow, int s0,
|
|
|
|
const union sockaddr_inany *sa);
|
2022-03-15 00:07:02 +00:00
|
|
|
void tcp_splice_init(struct ctx *c);
|
2022-03-25 23:05:31 +00:00
|
|
|
|
|
|
|
#endif /* TCP_SPLICE_H */
|