mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-30 00:21:01 +00:00
Add host helper
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package io.xpipe.extension.util;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
public class HostHelper {
|
||||
|
||||
public static boolean isLocalHost(String host) {
|
||||
if (host.equals("127.0.0.1")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (host.toLowerCase(Locale.ROOT).equals("localhost")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user