diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-08-14 14:06:28 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-08-14 14:06:28 +0300 |
commit | 8904c87c6beb4f2b080bf4269fb211e6f2eea7f2 (patch) | |
tree | 1179b22131d2b9a0c92cb15ea5c266baab62259c /test/go/mirror/app.go | |
parent | b3b7013edaa142318349e46825f250b7ab6b2bc0 (diff) | |
download | unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.gz unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.bz2 |
Tests: goftm used for Go applications.
Diffstat (limited to '')
-rw-r--r-- | test/go/mirror/app.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/go/mirror/app.go b/test/go/mirror/app.go index 82b1c92d..748aa7ee 100644 --- a/test/go/mirror/app.go +++ b/test/go/mirror/app.go @@ -1,21 +1,21 @@ package main import ( - "io" - "fmt" - "net/http" - "nginx/unit" + "fmt" + "io" + "net/http" + "nginx/unit" ) func handler(w http.ResponseWriter, r *http.Request) { - var buf [32768]byte; - len, _ := r.Body.Read(buf[:]) + var buf [32768]byte + len, _ := r.Body.Read(buf[:]) - w.Header().Add("Content-Length", fmt.Sprintf("%v", len)) - io.WriteString(w, string(buf[:len])) + w.Header().Add("Content-Length", fmt.Sprintf("%v", len)) + io.WriteString(w, string(buf[:len])) } func main() { - http.HandleFunc("/", handler) - unit.ListenAndServe(":7080", nil) + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) } |