summaryrefslogtreecommitdiff
path: root/source4/lib/socket/socket_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/socket/socket_unix.c')
-rw-r--r--source4/lib/socket/socket_unix.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/source4/lib/socket/socket_unix.c b/source4/lib/socket/socket_unix.c
index d160d897ee..f09573802a 100644
--- a/source4/lib/socket/socket_unix.c
+++ b/source4/lib/socket/socket_unix.c
@@ -246,26 +246,26 @@ static int unixdom_get_fd(struct socket_context *sock)
}
static const struct socket_ops unixdom_ops = {
- .name = "unix",
- .type = SOCKET_TYPE_STREAM,
-
- .init = unixdom_init,
- .connect = unixdom_connect,
- .listen = unixdom_listen,
- .accept = unixdom_accept,
- .recv = unixdom_recv,
- .send = unixdom_send,
- .close = unixdom_close,
-
- .set_option = unixdom_set_option,
-
- .get_peer_name = unixdom_get_peer_name,
- .get_peer_addr = unixdom_get_peer_addr,
- .get_peer_port = unixdom_get_peer_port,
- .get_my_addr = unixdom_get_my_addr,
- .get_my_port = unixdom_get_my_port,
-
- .get_fd = unixdom_get_fd
+ .name = "unix",
+ .type = SOCKET_TYPE_STREAM,
+
+ .fn_init = unixdom_init,
+ .fn_connect = unixdom_connect,
+ .fn_listen = unixdom_listen,
+ .fn_accept = unixdom_accept,
+ .fn_recv = unixdom_recv,
+ .fn_send = unixdom_send,
+ .fn_close = unixdom_close,
+
+ .fn_set_option = unixdom_set_option,
+
+ .fn_get_peer_name = unixdom_get_peer_name,
+ .fn_get_peer_addr = unixdom_get_peer_addr,
+ .fn_get_peer_port = unixdom_get_peer_port,
+ .fn_get_my_addr = unixdom_get_my_addr,
+ .fn_get_my_port = unixdom_get_my_port,
+
+ .fn_get_fd = unixdom_get_fd
};
const struct socket_ops *socket_unixdom_ops(void)