mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
smbd: pass down lp_ctx to stream_new_connection_merge()
metze (This used to be commit 91e9062265a68e3a1fe5e092503ec44ae5ea034e)
This commit is contained in:
parent
626b2da5a9
commit
250478d044
@ -119,6 +119,7 @@ void stream_io_handler_callback(void *private, uint16_t flags)
|
||||
a server connection
|
||||
*/
|
||||
NTSTATUS stream_new_connection_merge(struct event_context *ev,
|
||||
struct loadparm_context *lp_ctx,
|
||||
const struct model_ops *model_ops,
|
||||
struct socket_context *sock,
|
||||
const struct stream_server_ops *stream_ops,
|
||||
@ -140,6 +141,7 @@ NTSTATUS stream_new_connection_merge(struct event_context *ev,
|
||||
srv_conn->ops = stream_ops;
|
||||
srv_conn->msg_ctx = msg_ctx;
|
||||
srv_conn->event.ctx = ev;
|
||||
srv_conn->lp_ctx = lp_ctx;
|
||||
srv_conn->event.fde = event_add_fd(ev, srv_conn, socket_get_fd(sock),
|
||||
EVENT_FD_READ,
|
||||
stream_io_handler_fde, srv_conn);
|
||||
|
@ -230,7 +230,7 @@ NTSTATUS wreplsrv_in_connection_merge(struct wreplsrv_partner *partner,
|
||||
wrepl_in->service = service;
|
||||
wrepl_in->partner = partner;
|
||||
|
||||
status = stream_new_connection_merge(service->task->event_ctx, model_ops,
|
||||
status = stream_new_connection_merge(service->task->event_ctx, service->task->lp_ctx, model_ops,
|
||||
sock, &wreplsrv_stream_ops, service->task->msg_ctx,
|
||||
wrepl_in, &conn);
|
||||
NT_STATUS_NOT_OK_RETURN(status);
|
||||
|
Loading…
x
Reference in New Issue
Block a user