summaryrefslogblamecommitdiffhomepage
path: root/test/go/mirror/app.go
blob: 78f047c35bd48248eb443dbb943741928f9f1f58 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


            


                  
                           


                                                      

                                     
 

                                                                


             

                                         
 
package main

import (
	"fmt"
	"io"
	"net/http"
	"unit.nginx.org/go"
)

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)
}