1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-13 08:23:49 +03:00

r3013: added support for unix domain sockets in the generic socket library. I

will shortly be using this for a rewrite of the intra-smbd messaging
library, which is needed to get lock timeouts working properly (and
share modes, oplocks etc)
This commit is contained in:
Andrew Tridgell
2004-10-17 05:07:07 +00:00
committed by Gerald (Jerry) Carter
parent 58a92abd88
commit 6f4926d846
5 changed files with 334 additions and 1 deletions

View File

@@ -240,5 +240,9 @@ const struct socket_ops *socket_getops_byname(const char *name, enum socket_type
return socket_ipv4_ops();
}
if (strequal("unix", name)) {
return socket_ipv4_ops();
}
return NULL;
}