You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ncdns/server/serverinfo.go

12 lines
177 B
Go

10 years ago
package server
10 years ago
import denet "github.com/hlandau/degoutils/net"
10 years ago
func (s *Server) ServerName() string {
n := s.cfg.SelfName
if n == "" {
10 years ago
n = denet.Hostname()
10 years ago
}
return n
}