Skip to content

v0.4.0

Compare
Choose a tag to compare
@xvzc xvzc released this 27 Aug 20:42
· 455 commits to main since this release

Changes

  • Fixed recursive http redirection issue

This change replaces http request packet like below

 GET http://google.com/ HTTP/1.1
 Host: google.com
 User-Agent: curl/7.77.0
 Accept: */*
 Proxy-Connection: Keep-Alive

The packet above gets replaced like below

 GET / HTTP/1.1
 Host: google.com
 User-Agent: curl/7.77.0
 Accept: */*