Differences From Artifact [65bba562bd]:
- File
src/OFSocket.h
— part of check-in
[d5373ff70f]
at
2021-10-24 18:11:41
on branch unix-sockets
— Enable UNIX sockets on Windows
Windows 10 supports UNIX sockets since Insider Preview Build 17063, but
only SOCK_STREAM. (user: js, size: 8733) [annotate] [blame] [check-ins using] [more...]
To Artifact [064208fd7e]:
- File src/OFSocket.h — part of check-in [1fba563718] at 2022-01-29 22:00:59 on branch trunk — Fix redefinition of struct sockaddr_un on MiNT (user: js, size: 8754) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
133 134 135 136 137 138 139 | # define IPX_NODE_LEN 6 # define sipx_family sa_family # define sipx_network sa_netnum # define sipx_node sa_nodenum # define sipx_port sa_socket #endif | | | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# define IPX_NODE_LEN 6
# define sipx_family sa_family
# define sipx_network sa_netnum
# define sipx_node sa_nodenum
# define sipx_port sa_socket
#endif
#if !defined(OF_HAVE_UNIX_SOCKETS) && !defined(OF_MORPHOS) && !defined(OF_MINT)
struct sockaddr_un {
sa_family_t sun_family;
char sun_path[108];
};
#endif
/**
|
| ︙ | ︙ |