| Package | Description | 
|---|---|
| net.bluemind.unixsocket.impl | 
| Class and Description | 
|---|
| 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. 
 | 
Copyright © 2021. All Rights Reserved.