You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
438 B
17 lines
438 B
package clientserver |
|
|
|
import ( |
|
"fmt" |
|
"log" |
|
"net/http" |
|
customtypes "sample-choose-ad/cmd/custom_types" |
|
"time" |
|
) |
|
|
|
const MAX_TIME_PER_REQUEST = time.Duration(250 * time.Millisecond) |
|
|
|
func StartServer(port string, partners []customtypes.PartnersAddress) { |
|
h := http.TimeoutHandler(handleRequest(partners), MAX_TIME_PER_REQUEST, "") |
|
http.Handle("/placements/request", h) |
|
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%v", port), nil)) |
|
}
|
|
|