12 lines
170 B
Go
12 lines
170 B
Go
|
package http
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func GetRemoteIP(r *http.Request) string {
|
||
|
ip := r.Header.Get("X-Forwarded-For")
|
||
|
if len(ip) <= 1 {
|
||
|
ip = r.RemoteAddr
|
||
|
}
|
||
|
return ip
|
||
|
}
|