Hi,
ffproxy doesn't support http headers which size is > 2048 bytes, causing some web sites to return http 400 errors (bad request) to your browser.
But it's easy to fix. You have to update 2 lines of code in request.c:
line 188 : char buf[2048]; ==> char buf[4096]; line 293 : char buf[4096]; ==> char buf[8192];
and recompile with "make"
Please note this is a quick & dirty fix, but it's doing the trick !!
Florent
A tool that cleans your /home folder of old configuration files.
Provides a generic CDS (or ARINC 661 Server) conforming to the ARINC 661 standard.
Hi,
ffproxy doesn't support http headers which size is > 2048 bytes, causing some web sites to return http 400 errors (bad request) to your browser.
But it's easy to fix.
You have to update 2 lines of code in request.c:
line 188 : char buf[2048]; ==> char buf[4096];
line 293 : char buf[4096]; ==> char buf[8192];
and recompile with "make"
Please note this is a quick & dirty fix, but it's doing the trick !!
Florent