gophi/core/host.go
kim (grufwub) 529d28e62e refactor sync.Pool usages, improve file reading perf, trim leading '/' in request
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
2020-10-23 20:59:09 +01:00

19 lines
334 B
Go

package core
var (
// Root stores the server's root directory
Root string
// Bind stores the server's bound IP
Bind string
// Hostname stores the host's outward hostname
Hostname string
// Port stores the internal port the host is binded to
Port string
// FwdPort stores the host's outward port number
FwdPort string
)