I want to use wireguard over glider which means it would listen a udp port and redirect the traffic over proxy.
I know it is possible to do it using glider -listen=udp://:10000 -forward=socks5://127.0.0.1:1080,udp://[wireguard_server]:[port].
But this requires a new instance of the glider and unable to reuse existing forwarding options, so I want to a option like
I want to use wireguard over glider which means it would listen a udp port and redirect the traffic over proxy.
I know it is possible to do it using
glider -listen=udp://:10000 -forward=socks5://127.0.0.1:1080,udp://[wireguard_server]:[port]
. But this requires a new instance of the glider and unable to reuse existing forwarding options, so I want to a option likeor
to redirect request from
udp://127.0.0.1:10000
toudp://[wireguard_server]:[port]
via forward.I would be more honored if you had a better design.