< prev index next >

src/java.base/unix/native/libnet/net_util_md.h

Print this page
rev 55750 : UDS support, temporary commit

@@ -27,10 +27,11 @@
 #define NET_UTILS_MD_H
 
 #include <netdb.h>
 #include <poll.h>
 #include <sys/socket.h>
+#include <sys/un.h>
 
 /************************************************************************
  * Macros and constants
  */
 

@@ -69,10 +70,11 @@
 
 typedef union {
     struct sockaddr     sa;
     struct sockaddr_in  sa4;
     struct sockaddr_in6 sa6;
+    struct sockaddr_un  sau;
 } SOCKETADDRESS;
 
 /************************************************************************
  * Functions
  */
< prev index next >