Merge 4a24c47a69f56e8275ef330beca3c2925d270948 into b3f322c5fc19d68e297ae0a175770b232eae0bc1

This commit is contained in:
Oleg 2014-08-25 12:00:38 +00:00
commit 0f4fe899e2

View File

@ -1,7 +1,10 @@
package gin
import (
"bufio"
"errors"
"log"
"net"
"net/http"
)
@ -11,6 +14,7 @@ type (
Status() int
Written() bool
WriteHeaderNow()
Hijack() (net.Conn, *bufio.ReadWriter, error)
}
responseWriter struct {
@ -54,3 +58,12 @@ func (w *responseWriter) Status() int {
func (w *responseWriter) Written() bool {
return w.written
}
// allow connection hijacking
func (w *responseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
hijacker, ok := w.ResponseWriter.(http.Hijacker)
if !ok {
return nil, nil, errors.New("the ResponseWriter doesn't support the Hijacker interface")
}
return hijacker.Hijack()
}