0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

add supported for ws in reverse proxy

This commit is contained in:
Austin 2015-05-29 19:21:50 -07:00
parent 9bdd9bdecc
commit 2d6ff40649
2 changed files with 35 additions and 3 deletions

View file

@ -4,8 +4,9 @@ import (
"testing"
"fmt"
"github.com/mholt/caddy/middleware/rewrite"
"regexp"
"github.com/mholt/caddy/middleware/rewrite"
)
func TestRewrite(t *testing.T) {

View file

@ -16,6 +16,8 @@ import (
"time"
)
const HTTPSwitchProtocols = 101
// onExitFlushLoop is a callback set by tests to detect the state of the
// flushLoop() goroutine.
var onExitFlushLoop func()
@ -153,8 +155,37 @@ func (p *ReverseProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request, extr
copyHeader(rw.Header(), res.Header)
rw.WriteHeader(res.StatusCode)
p.copyResponse(rw, res.Body)
if res.StatusCode == HTTPSwitchProtocols {
hj, ok := rw.(http.Hijacker)
if !ok {
return nil
}
conn, _, err := hj.Hijack()
if err != nil {
return err
}
backendConn, err := net.Dial("tcp", outreq.Host)
if err != nil {
conn.Close()
return err
}
outreq.Write(backendConn)
go func() {
io.Copy(backendConn, conn) // write tcp stream to backend.
backendConn.Close()
}()
io.Copy(conn, backendConn) // read tcp stream from backend.
conn.Close()
} else {
rw.WriteHeader(res.StatusCode)
p.copyResponse(rw, res.Body)
}
return nil
}