You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Everything seems to work fine with the client, but on the proxy I always receive following error, which causes the quic.DialEarly to fail. 2024/12/05 13:57:38 proxying receive side to [2a02:****:5d33]:8853 failed: DATAGRAM frame too large
I already tried different quic.Config InitialPacketSize values for both inner quic and outer masque stream but I cant get it to work.
The text was updated successfully, but these errors were encountered:
When I test it with InitialPacketSize: 1350,
This error shows up locally: failed to dial target via masque proxy: INTERNAL_ERROR (local): EOF
and this on the proxy: proxying receive side to [2a02:xxxx:5d33]:8853 failed: DATAGRAM frame too large
Now when I decrease the InitialPacketSize: 1250,
This error shows up locally: failed to dial target via masque proxy: INTERNAL_ERROR (local): DATAGRAM frame too large
and this on the proxy: proxying send side to [2a02:xxxx:5d33]:8853 failed: timeout: no recent network activity
Just wanted to update that I managed to solve this by setting InitialPacketSize: 1400 on the client and InitialPacketSize: 1500 on the proxy. Manually setting it, and setting it to a higher value on the proxy than on the client was essential here for me.
Hi,
I am trying to build a DoQ client combined with a masque proxy.
Currently I am using this code to connect to my DoQ server at myurl:8853:
Everything seems to work fine with the client, but on the proxy I always receive following error, which causes the quic.DialEarly to fail.
2024/12/05 13:57:38 proxying receive side to [2a02:****:5d33]:8853 failed: DATAGRAM frame too large
I already tried different quic.Config InitialPacketSize values for both inner quic and outer masque stream but I cant get it to work.
The text was updated successfully, but these errors were encountered: