X-Git-Url: http://git.scottworley.com/reliable-chat/blobdiff_plain/270d2ae5829e1d66dcc1a0fb78ba3c2e3c3c22de..0537aeda2c8cebca1d20fbf6477e1e13cc70fc76:/server/server.go diff --git a/server/server.go b/server/server.go index adbbf84..695ec10 100644 --- a/server/server.go +++ b/server/server.go @@ -29,7 +29,6 @@ import "time" var port = flag.Int("port", 21059, "Port to listen on") var localaddress = flag.String("localaddress", "", "Local address to bind to") -var frame_count = expvar.NewInt("frame_count") var speak_count = expvar.NewInt("speak_count") var fetch_count = expvar.NewInt("fetch_count") var fetch_wait_count = expvar.NewInt("fetch_wait_count") @@ -114,49 +113,6 @@ func start_store() Store { return store } -const frame_html = ` - - - - - - - - -` - const robots_txt = `User-agent: * Disallow: / ` @@ -195,11 +151,6 @@ func start_server(store Store) { r.FormValue("text")} }) - http.HandleFunc("/frame", func(w http.ResponseWriter, r *http.Request) { - frame_count.Add(1) - w.Write([]byte(frame_html)); - }) - http.HandleFunc("/robots.txt", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte(robots_txt)); })