a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
25 lignes
556 o
Go
25 lignes
556 o
Go
package missinggo
|
|
|
|
import "net/http"
|
|
|
|
// A http.ResponseWriter that tracks the status of the response. The status
|
|
// code, and number of bytes written for example.
|
|
type StatusResponseWriter struct {
|
|
http.ResponseWriter
|
|
Code int
|
|
BytesWritten int64
|
|
}
|
|
|
|
func (me *StatusResponseWriter) Write(b []byte) (n int, err error) {
|
|
if me.Code == 0 {
|
|
me.Code = 200
|
|
}
|
|
n, err = me.ResponseWriter.Write(b)
|
|
me.BytesWritten += int64(n)
|
|
return
|
|
}
|
|
|
|
func (me *StatusResponseWriter) WriteHeader(code int) {
|
|
me.ResponseWriter.WriteHeader(code)
|
|
me.Code = code
|
|
}
|