mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Add host helper
This commit is contained in:
parent
8036b866ad
commit
fe52f10ca8
1 changed files with 18 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue