mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2025-07-20 17:45:55 +02:00
Cleanup
This commit is contained in:
parent
9cd40d5b30
commit
0f2696ec8b
1 changed files with 0 additions and 21 deletions
21
http.go
21
http.go
|
@ -1,21 +0,0 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
const (
|
||||
HttpOK = "HTTP/1.1 200 OK\r\n"
|
||||
MethodRDGIN = "RDG_IN_DATA"
|
||||
MethodRDGOUT = "RDG_OUT_DATA"
|
||||
)
|
||||
|
||||
// httpError is like the http.Error with WebSocket context exception.
|
||||
func httpError(w http.ResponseWriter, body string, code int) {
|
||||
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
||||
w.Header().Set("Content-Length", strconv.Itoa(len(body)))
|
||||
w.WriteHeader(code)
|
||||
w.Write([]byte(body))
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue