LocalSocketAddresspublic class LocalSocketAddress extends Object A UNIX-domain (AF_LOCAL) socket address. For use with
android.net.LocalSocket and android.net.LocalServerSocket.
On the Android system, these names refer to names in the Linux
abstract (non-filesystem) UNIX domain namespace. |
Fields Summary |
---|
private final String | name | private final Namespace | namespace |
Constructors Summary |
---|
public LocalSocketAddress(String name, Namespace namespace)Creates an instance with a given name.
this.name = name;
this.namespace = namespace;
| public LocalSocketAddress(String name)Creates an instance with a given name in the {@link Namespace#ABSTRACT}
namespace
this(name,Namespace.ABSTRACT);
|
|