aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/tools/http_server/http_server.go
blob: d2ab3851643b83fc3d78d66bbb02dfc3817b236e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package main

import (
	"fmt"
	"io"
	"net/http"
	"os"
)

func main() {
	if len(os.Args) < 3 {
		fmt.Println("arg expected")
		os.Exit(1)
	}

	http.HandleFunc("/httpTestFile", func(w http.ResponseWriter, r *http.Request) {
		file, _ := os.Open("httpTestFile" + os.Args[2])
		defer file.Close()
		io.Copy(w, file)
	})
	err := http.ListenAndServe(os.Args[1], nil)
	if err != nil {
		fmt.Printf("%v\n", err)
		os.Exit(1)
	}
}