Package org.h2.util
Class NetUtils
- java.lang.Object
-
- org.h2.util.NetUtils
-
public class NetUtils extends java.lang.ObjectThis utility class contains socket helper functions.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.net.ServerSocketcloseSilently(java.net.ServerSocket socket)Close a server socket and ignore any exceptions.static java.net.SocketcreateLoopbackSocket(int port, boolean ssl)Create a loopback socket (a socket that is connected to localhost) on this port.static java.net.ServerSocketcreateServerSocket(int port, boolean ssl)Create a server socket.static java.net.SocketcreateSocket(java.lang.String server, int defaultPort, boolean ssl)Create a client socket that is connected to the given address and port.static java.net.SocketcreateSocket(java.lang.String server, int defaultPort, boolean ssl, int networkTimeout)Create a client socket that is connected to the given address and port.static java.net.SocketcreateSocket(java.net.InetAddress address, int port, boolean ssl)Create a client socket that is connected to the given address and port.static java.net.SocketcreateSocket(java.net.InetAddress address, int port, boolean ssl, int networkTimeout)Create a client socket that is connected to the given address and port.static java.lang.StringgetHostName(java.lang.String localAddress)Get the host name of a local address, if available.static java.lang.StringgetLocalAddress()Get the local host address as a string.static java.lang.StringBuilderipToShortForm(java.lang.StringBuilder builder, byte[] address, boolean addBrackets)Appends short representation of the specified IP address to the string builder.static booleanisLocalAddress(java.net.Socket socket)Check if a socket is connected to a local address.
-
-
-
Method Detail
-
createLoopbackSocket
public static java.net.Socket createLoopbackSocket(int port, boolean ssl) throws java.io.IOExceptionCreate a loopback socket (a socket that is connected to localhost) on this port.- Parameters:
port- the portssl- if SSL should be used- Returns:
- the socket
- Throws:
java.io.IOException- on failure
-
createSocket
public static java.net.Socket createSocket(java.lang.String server, int defaultPort, boolean ssl) throws java.io.IOExceptionCreate a client socket that is connected to the given address and port.- Parameters:
server- to connect to (including an optional port)defaultPort- the default port (if not specified in the server address)ssl- if SSL should be used- Returns:
- the socket
- Throws:
java.io.IOException- on failure
-
createSocket
public static java.net.Socket createSocket(java.lang.String server, int defaultPort, boolean ssl, int networkTimeout) throws java.io.IOExceptionCreate a client socket that is connected to the given address and port.- Parameters:
server- to connect to (including an optional port)defaultPort- the default port (if not specified in the server address)ssl- if SSL should be usednetworkTimeout- socket so timeout- Returns:
- the socket
- Throws:
java.io.IOException- on failure
-
createSocket
public static java.net.Socket createSocket(java.net.InetAddress address, int port, boolean ssl) throws java.io.IOExceptionCreate a client socket that is connected to the given address and port.- Parameters:
address- the address to connect toport- the portssl- if SSL should be used- Returns:
- the socket
- Throws:
java.io.IOException- on failure
-
createSocket
public static java.net.Socket createSocket(java.net.InetAddress address, int port, boolean ssl, int networkTimeout) throws java.io.IOExceptionCreate a client socket that is connected to the given address and port.- Parameters:
address- the address to connect toport- the portssl- if SSL should be usednetworkTimeout- socket so timeout- Returns:
- the socket
- Throws:
java.io.IOException- on failure
-
createServerSocket
public static java.net.ServerSocket createServerSocket(int port, boolean ssl)Create a server socket. The system property h2.bindAddress is used if set.- Parameters:
port- the port to listen onssl- if SSL should be used- Returns:
- the server socket
-
isLocalAddress
public static boolean isLocalAddress(java.net.Socket socket) throws java.net.UnknownHostExceptionCheck if a socket is connected to a local address.- Parameters:
socket- the socket- Returns:
- true if it is
- Throws:
java.net.UnknownHostException- on failure
-
closeSilently
public static java.net.ServerSocket closeSilently(java.net.ServerSocket socket)
Close a server socket and ignore any exceptions.- Parameters:
socket- the socket- Returns:
- null
-
getLocalAddress
public static java.lang.String getLocalAddress()
Get the local host address as a string. For performance, the result is cached for one second.- Returns:
- the local host address
-
getHostName
public static java.lang.String getHostName(java.lang.String localAddress)
Get the host name of a local address, if available.- Parameters:
localAddress- the local address- Returns:
- the host name, or another text if not available
-
ipToShortForm
public static java.lang.StringBuilder ipToShortForm(java.lang.StringBuilder builder, byte[] address, boolean addBrackets)Appends short representation of the specified IP address to the string builder.- Parameters:
builder- string builder to append to, ornulladdress- IP addressaddBrackets- if (true, add brackets around IPv6 addresses- Returns:
- the specified or the new string builder with short representation of specified address
-
-