File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ You can download the binary for your platform from [Releases](https://github.com
101101Example:
102102
103103``` shell
104- HPTS_RELEASE=v1.9.1 ; wget -v https://github.com/shadowy-pycoder/go-http-proxy-to-socks/releases/download/$HPTS_RELEASE /gohpts-$HPTS_RELEASE -linux-amd64.tar.gz -O gohpts && tar xvzf gohpts && mv -f gohpts-$HPTS_RELEASE -linux-amd64 gohpts && ./gohpts -h
104+ HPTS_RELEASE=v1.9.2 ; wget -v https://github.com/shadowy-pycoder/go-http-proxy-to-socks/releases/download/$HPTS_RELEASE /gohpts-$HPTS_RELEASE -linux-amd64.tar.gz -O gohpts && tar xvzf gohpts && mv -f gohpts-$HPTS_RELEASE -linux-amd64 gohpts && ./gohpts -h
105105```
106106
107107Alternatively, you can install it using ` go install ` command (requires Go [ 1.24] ( https://go.dev/doc/install ) or later):
Original file line number Diff line number Diff line change @@ -1146,7 +1146,7 @@ readLoop:
11461146 }
11471147 if er != nil {
11481148 if ne , ok := er .(net.Error ); ok && ne .Timeout () {
1149- break readLoop
1149+ continue // support long-lived connections (SSE, WebSockets, etc)
11501150 }
11511151 if errors .Is (er , net .ErrClosed ) {
11521152 break readLoop
Original file line number Diff line number Diff line change 11package gohpts
22
3- const Version string = "gohpts v1.9.1 "
3+ const Version string = "gohpts v1.9.2 "
You can’t perform that action at this time.
0 commit comments