1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r17227: don't call a function which takes some nonoptional args

with NULL.

metze
(This used to be commit 3711b968ad)
This commit is contained in:
Stefan Metzmacher 2006-07-25 08:00:30 +00:00 committed by Gerald (Jerry) Carter
parent 79f7b58630
commit 8a3f6a7912

View File

@ -81,12 +81,8 @@ void stream_terminate_connection(struct stream_connection *srv_conn, const char
/*
the select loop has indicated that a stream is ready for IO
*/
static void stream_io_handler(struct event_context *ev, struct fd_event *fde,
uint16_t flags, void *private)
static void stream_io_handler(struct stream_connection *conn, uint16_t flags)
{
struct stream_connection *conn = talloc_get_type(private,
struct stream_connection);
conn->processing = True;
if (flags & EVENT_FD_WRITE) {
conn->ops->send_handler(conn, flags);
@ -100,9 +96,19 @@ static void stream_io_handler(struct event_context *ev, struct fd_event *fde,
}
}
void stream_io_handler_callback(void *conn, uint16_t flags)
static void stream_io_handler_fde(struct event_context *ev, struct fd_event *fde,
uint16_t flags, void *private)
{
stream_io_handler(NULL, NULL, flags, conn);
struct stream_connection *conn = talloc_get_type(private,
struct stream_connection);
stream_io_handler(conn, flags);
}
void stream_io_handler_callback(void *private, uint16_t flags)
{
struct stream_connection *conn = talloc_get_type(private,
struct stream_connection);
stream_io_handler(conn, flags);
}
/*
@ -134,7 +140,7 @@ NTSTATUS stream_new_connection_merge(struct event_context *ev,
srv_conn->event.ctx = ev;
srv_conn->event.fde = event_add_fd(ev, srv_conn, socket_get_fd(sock),
EVENT_FD_READ,
stream_io_handler, srv_conn);
stream_io_handler_fde, srv_conn);
*_srv_conn = srv_conn;
return NT_STATUS_OK;
}
@ -167,7 +173,7 @@ static void stream_new_connection(struct event_context *ev,
srv_conn->event.ctx = ev;
srv_conn->event.fde = event_add_fd(ev, srv_conn, socket_get_fd(sock),
EVENT_FD_READ,
stream_io_handler, srv_conn);
stream_io_handler_fde, srv_conn);
if (!socket_check_access(sock, "smbd", lp_hostsallow(-1), lp_hostsdeny(-1))) {
stream_terminate_connection(srv_conn, "denied by access rules");