| java.lang.Object | |
| ↳ | android.net.LocalServerSocket | 
non-standard class for creating inbound UNIX-domain socket on the Android platform, this is created in the Linux non-filesystem namespace. On simulator platforms, this may be created in a temporary directory on the filesystem
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Crewates a new server socket listening at specified name. | |||||||||||
| Create a LocalServerSocket from a file descriptor that's already
 been created and bound. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Accepts a new connection to the socket. | |||||||||||
| Closes server socket. | |||||||||||
| Returns file descriptor or null if not yet open/already closed | |||||||||||
| Obtains the socket's local address | |||||||||||
| [Expand] Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
  java.lang.Object | |||||||||||
Crewates a new server socket listening at specified name. On the Android platform, the name is created in the Linux abstract namespace (instead of on the filesystem).
| name | address for socket | 
|---|
| IOException | 
|---|
Create a LocalServerSocket from a file descriptor that's already been created and bound. listen() will be called immediately on it. Used for cases where file descriptors are passed in via environment variables
| fd | bound file descriptor | 
|---|
| IOException | 
|---|
Accepts a new connection to the socket. Blocks until a new connection arrives.
| IOException | 
|---|
Returns file descriptor or null if not yet open/already closed
Obtains the socket's local address