| Message ID | 20251017205837.8553-1-gert@greenie.muc.de |
|---|---|
| State | Accepted |
| Headers | show |
| Series | [Openvpn-devel,v2] dco: remove dco_read/write_bytes from dco_context_t | expand |
As this is fairly straightforward ("remove things nobody wants anymore"),
I have only compile-tested on FreeBSD/DCO, Linux/DCO and MinGW. Compiles
fine :-)
Your patch has been applied to the master branch.
commit 3e76d8f8a475d08bcb50321e742a06c53e19d45d
Author: Ralf Lici
Date: Fri Oct 17 22:58:31 2025 +0200
dco: remove dco_read/write_bytes from dco_context_t
Signed-off-by: Ralf Lici <ralf@mandelbit.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1276
Message-Id: <20251017205837.8553-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg33431.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
diff --git a/src/openvpn/dco_freebsd.h b/src/openvpn/dco_freebsd.h index 2f486f0..0797b82 100644 --- a/src/openvpn/dco_freebsd.h +++ b/src/openvpn/dco_freebsd.h @@ -59,8 +59,6 @@ int dco_message_peer_id; int dco_del_peer_reason; struct sockaddr_storage dco_float_peer_ss; - uint64_t dco_read_bytes; - uint64_t dco_write_bytes; struct context *c; } dco_context_t; diff --git a/src/openvpn/dco_linux.h b/src/openvpn/dco_linux.h index 310d433..efd5b27 100644 --- a/src/openvpn/dco_linux.h +++ b/src/openvpn/dco_linux.h @@ -81,8 +81,6 @@ int dco_message_key_id; int dco_del_peer_reason; struct sockaddr_storage dco_float_peer_ss; - uint64_t dco_read_bytes; - uint64_t dco_write_bytes; } dco_context_t; #endif /* defined(ENABLE_DCO) && defined(TARGET_LINUX) */ diff --git a/src/openvpn/dco_win.h b/src/openvpn/dco_win.h index 4f3f028..02b8389 100644 --- a/src/openvpn/dco_win.h +++ b/src/openvpn/dco_win.h @@ -55,9 +55,6 @@ int dco_del_peer_reason; struct sockaddr_storage dco_float_peer_ss; - uint64_t dco_read_bytes; - uint64_t dco_write_bytes; - struct context *c; }; diff --git a/src/openvpn/multi.c b/src/openvpn/multi.c index 2863ff1..053c54d 100644 --- a/src/openvpn/multi.c +++ b/src/openvpn/multi.c @@ -3266,8 +3266,6 @@ * installed, and we do not need to clean up the state in the kernel */ mi->context.c2.tls_multi->dco_peer_id = -1; mi->context.sig->signal_text = reason; - mi->context.c2.dco_read_bytes = dco->dco_read_bytes; - mi->context.c2.dco_write_bytes = dco->dco_write_bytes; multi_signal_instance(m, mi, SIGTERM); } @@ -3337,8 +3335,6 @@ dco->dco_message_type = 0; dco->dco_message_peer_id = -1; dco->dco_del_peer_reason = -1; - dco->dco_read_bytes = 0; - dco->dco_write_bytes = 0; return ret > 0; } #endif /* if defined(ENABLE_DCO) */