在richcms的源码中,提供两个函数,用于解析IP地址的主机名。richcms中的搜索引擎蜘蛛判断,使用了此方法。
GetHostName,根据IP地址,解析主机名
// GetHostName 根据ip,解析主机名
func GetHostName(ip string) string {
if ip == "" {
return ""
}
names, err := net.LookupAddr(ip)
if err != nil {
return ""
}
if len(names) > 0 {
return names[0]
}
return ""
}
GetHostNameWithTimeOut
用于某些IP地址可能会解析失败时
// GetHostNameWithTimeOut 根据ip,解析主机名
// 带超时的
func GetHostNameWithTimeOut(ip string) string {
ctx, _ := context.WithTimeout(context.Background(), time.Millisecond*5)
names, err := net.DefaultResolver.LookupAddr(ctx, ip)
if err != nil {
return ""
}
if len(names) > 0 {
return names[0]
}
return ""
}