summaryrefslogtreecommitdiffstats
path: root/cmd/web_windows.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2016-12-31 17:16:02 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2016-12-31 17:16:02 +0800
commitbf85c82087adaf5e9bebdcd3c863e2e0a061c746 (patch)
tree5f874b736b0fbb796ac735d064bb9a714a856025 /cmd/web_windows.go
parentc0904f1942071ce870ab9d87bd6c7f49f614ee82 (diff)
downloadgitea-bf85c82087adaf5e9bebdcd3c863e2e0a061c746.tar.gz
gitea-bf85c82087adaf5e9bebdcd3c863e2e0a061c746.zip
fix windows build broken by #416
Diffstat (limited to 'cmd/web_windows.go')
-rw-r--r--cmd/web_windows.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/cmd/web_windows.go b/cmd/web_windows.go
new file mode 100644
index 0000000000..0fc6cbea0d
--- /dev/null
+++ b/cmd/web_windows.go
@@ -0,0 +1,19 @@
+// +build windows
+
+// Copyright 2016 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package cmd
+
+import (
+ "net/http"
+)
+
+func runHTTP(listenAddr string, m http.Handler) error {
+ return http.ListenAndServe(listenAddr, m)
+}
+
+func runHTTPS(listenAddr, certFile, keyFile string, m http.Handler) error {
+ return http.ListenAndServeTLS(listenAddr, certFile, keyFile, m)
+}