Re: [PATCH net-next v24 08/23] ovpn: implement basic RX path (UDP)

2025-04-04 Thread Antonio Quartulli
On 01/04/2025 11:47, Sabrina Dubroca wrote: 2025-03-18, 02:40:43 +0100, Antonio Quartulli wrote: diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 024458ef163c9e24dfb37aea2690b2030f6a0fbc..b30175e34230d3dbf5d253838df894f0625c705c 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -1933,6 +19

Re: [PATCH net-next v24 08/23] ovpn: implement basic RX path (UDP)

2025-04-01 Thread Sabrina Dubroca
2025-03-18, 02:40:43 +0100, Antonio Quartulli wrote: > diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c > index > 024458ef163c9e24dfb37aea2690b2030f6a0fbc..b30175e34230d3dbf5d253838df894f0625c705c > 100644 > --- a/net/ipv6/udp.c > +++ b/net/ipv6/udp.c > @@ -1933,6 +1933,7 @@ struct proto udpv6_prot =

[PATCH net-next v24 08/23] ovpn: implement basic RX path (UDP)

2025-03-17 Thread Antonio Quartulli
Packets received over the socket are forwarded to the user device. Implementation is UDP only. TCP will be added by a later patch. Note: no decryption/decapsulation exists yet, packets are forwarded as they arrive without much processing. Signed-off-by: Antonio Quartulli --- drivers/net/ovpn/i