| Class | Description |
|---|---|
| DMLibcSocket |
Low level LibC binding suitable for JNA
|
| sockaddr_un |
A Unix domain socket address is represented in the following structure:
#define UNIX_PATH_MAX 108
struct sockaddr_un {
sa_family_t sun_family;
char sun_path[UNIX_PATH_MAX];
};
sun_family always contains AF_UNIX. |
| SocketAPI |
Wraps the low-level C calls in java methods with exception handling.
|
| UnixChannel |
Copyright © 2021. All Rights Reserved.