1
0
Fork 0
mirror of https://passt.top/passt synced 2025-06-02 06:15:33 +02:00

fwd: Rename port_fwd.[ch] and their contents

Currently port_fwd.[ch] contains helpers related to port forwarding,
particular automatic port forwarding.  We're planning to allow much more
flexible sorts of forwarding, including both port translation and NAT based
on the flow table.  This will subsume the existing port forwarding logic,
so rename port_fwd.[ch] to fwd.[ch] with matching updates to all the names
within.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
David Gibson 2024-02-28 22:25:20 +11:00 committed by Stefano Brivio
parent 10376e7a2f
commit 3b9098aa49
9 changed files with 53 additions and 53 deletions

View file

@ -39,7 +39,7 @@ union epoll_ref;
#include "packet.h"
#include "flow.h"
#include "icmp.h"
#include "port_fwd.h"
#include "fwd.h"
#include "tcp.h"
#include "udp.h"