mirror of
https://github.com/georgyo/ifconfig.io.git
synced 2025-03-21 03:12:55 +00:00
goimports
This commit is contained in:
parent
c8cd9ee648
commit
e3d1bc7bed
9
main.go
9
main.go
@ -7,13 +7,13 @@ import (
|
|||||||
"net/http/fcgi"
|
"net/http/fcgi"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
"strconv"
|
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
|
||||||
"github.com/brandfolder/gin-gorelic"
|
"github.com/brandfolder/gin-gorelic"
|
||||||
"github.com/coreos/go-systemd/activation"
|
"github.com/coreos/go-systemd/activation"
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Logger is a simple log handler, out puts in the standard of apache access log common.
|
// Logger is a simple log handler, out puts in the standard of apache access log common.
|
||||||
@ -54,7 +54,7 @@ func stringInSlice(a string, list []string) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func testRemoteTCPPort(address string) bool {
|
func testRemoteTCPPort(address string) bool {
|
||||||
_, err := net.DialTimeout("tcp", address, 3 * time.Second)
|
_, err := net.DialTimeout("tcp", address, 3*time.Second)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@ -76,7 +76,7 @@ func mainHandler(c *gin.Context) {
|
|||||||
if fields[0] == "porttest" {
|
if fields[0] == "porttest" {
|
||||||
if len(fields) >= 2 {
|
if len(fields) >= 2 {
|
||||||
if port, err := strconv.Atoi(fields[1]); err == nil && port > 0 && port <= 65535 {
|
if port, err := strconv.Atoi(fields[1]); err == nil && port > 0 && port <= 65535 {
|
||||||
c.String(200, fmt.Sprintln(testRemoteTCPPort(ip.IP.String() + ":" + fields[1])))
|
c.String(200, fmt.Sprintln(testRemoteTCPPort(ip.IP.String()+":"+fields[1])))
|
||||||
} else {
|
} else {
|
||||||
c.String(400, "Invalid Port Number")
|
c.String(400, "Invalid Port Number")
|
||||||
}
|
}
|
||||||
@ -190,7 +190,6 @@ func main() {
|
|||||||
errc <- fcgi.Serve(fcgi_listen, r)
|
errc <- fcgi.Serve(fcgi_listen, r)
|
||||||
}(errc)
|
}(errc)
|
||||||
|
|
||||||
|
|
||||||
// Listen on whatever systemd tells us to.
|
// Listen on whatever systemd tells us to.
|
||||||
listeners, err := activation.Listeners(true)
|
listeners, err := activation.Listeners(true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user