summaryrefslogtreecommitdiffhomepage
path: root/test/go/mirror/app.go
blob: 82b1c92dd06b446e44a52f3e2716bacae101bc1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main

import (
    "io"
    "fmt"
    "net/http"
    "nginx/unit"
)

func handler(w http.ResponseWriter, r *http.Request) {
    var buf [32768]byte;
    len, _ := r.Body.Read(buf[:])

    w.Header().Add("Content-Length", fmt.Sprintf("%v", len))
    io.WriteString(w, string(buf[:len]))
}

func main() {
    http.HandleFunc("/", handler)
    unit.ListenAndServe(":7080", nil)
}