mirror of
https://github.com/snail007/goproxy.git
synced 2026-04-27 00:15:51 +03:00
[GH-ISSUE #344] 源码版本IE使用goproxy,相同域名不同端口连续访问异常情况 #259
Labels
No labels
TODO
bug
duplicate
enhancement
good first issue
help wanted
helpful
invalid
need-confirm
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/goproxy#259
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @wlwinston on GitHub (Dec 26, 2019).
Original GitHub issue: https://github.com/snail007/goproxy/issues/344
IE早一些版本如IE7,在访问abc:8000端口后继续访问相同域名abc:8080端口的资源,会返回404错误,目前根据源码分析,问题可能是第一次访问8000端口时在func (s *HTTP) callback(inConn net.Conn)里建立了client->proxy-server的链路,后续再切换至访问8080端口资源时,client端没有发起新的tcp链接,而是直接走了已经建立的链路导致请求被发送到了abc:8000端口所以被返回404。
而后又测试了一下最新的8.8版本的binary包,发现没有这类问题。不知是否是已经修复此类问题?可否提供一下解决思路?十分感谢。