Files
vpp/extras/hs-test/tools/http_server/http_server.go
adrianvillin fbf5f2b030 hs-test: shortened interface names to avoid character limit
Type: test

Change-Id: I09df597ccb8a3c4af47b8a36010afb81df533236
Signed-off-by: adrianvillin <avillin@cisco.com>
2024-02-15 18:35:34 +00:00

27 lines
409 B
Go

package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
if len(os.Args) < 2 {
fmt.Println("arg expected")
os.Exit(1)
}
http.HandleFunc("/httpTestFile", func(w http.ResponseWriter, r *http.Request) {
file, _ := os.Open("httpTestFile")
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)
}
}