mirror of
https://github.com/samba-team/samba.git
synced 2025-03-24 10:50:22 +03:00
s3: change_notify_reply() does not need its "conn" argument
This commit is contained in:
parent
4a9b3e557f
commit
f589909eb1
@ -5770,14 +5770,13 @@ void reply_negprot(struct smb_request *req);
|
||||
|
||||
/* The following definitions come from smbd/notify.c */
|
||||
|
||||
void change_notify_reply(connection_struct *conn,
|
||||
struct smb_request *req,
|
||||
void change_notify_reply(struct smb_request *req,
|
||||
NTSTATUS error_code,
|
||||
uint32_t max_param,
|
||||
struct notify_change_buf *notify_buf,
|
||||
void (*reply_fn)(struct smb_request *req,
|
||||
NTSTATUS error_code,
|
||||
uint8_t *buf, size_t len));
|
||||
NTSTATUS error_code,
|
||||
uint8_t *buf, size_t len));
|
||||
NTSTATUS change_notify_create(struct files_struct *fsp, uint32 filter,
|
||||
bool recursive);
|
||||
NTSTATUS change_notify_add_request(struct smb_request *req,
|
||||
|
@ -139,14 +139,13 @@ static bool notify_marshall_changes(int num_changes,
|
||||
Setup the common parts of the return packet and send it.
|
||||
*****************************************************************************/
|
||||
|
||||
void change_notify_reply(connection_struct *conn,
|
||||
struct smb_request *req,
|
||||
void change_notify_reply(struct smb_request *req,
|
||||
NTSTATUS error_code,
|
||||
uint32_t max_param,
|
||||
struct notify_change_buf *notify_buf,
|
||||
void (*reply_fn)(struct smb_request *req,
|
||||
NTSTATUS error_code,
|
||||
uint8_t *buf, size_t len))
|
||||
NTSTATUS error_code,
|
||||
uint8_t *buf, size_t len))
|
||||
{
|
||||
prs_struct ps;
|
||||
|
||||
@ -313,7 +312,7 @@ void remove_pending_change_notify_requests_by_mid(uint64_t mid)
|
||||
return;
|
||||
}
|
||||
|
||||
change_notify_reply(map->req->fsp->conn, map->req->req,
|
||||
change_notify_reply(map->req->req,
|
||||
NT_STATUS_CANCELLED, 0, NULL, map->req->reply_fn);
|
||||
change_notify_remove_request(sconn, map->req);
|
||||
}
|
||||
@ -333,7 +332,7 @@ void smbd_notify_cancel_by_smbreq(const struct smb_request *smbreq)
|
||||
return;
|
||||
}
|
||||
|
||||
change_notify_reply(map->req->fsp->conn, map->req->req,
|
||||
change_notify_reply(map->req->req,
|
||||
NT_STATUS_CANCELLED, 0, NULL, map->req->reply_fn);
|
||||
change_notify_remove_request(sconn, map->req);
|
||||
}
|
||||
@ -350,7 +349,7 @@ void remove_pending_change_notify_requests_by_fid(files_struct *fsp,
|
||||
}
|
||||
|
||||
while (fsp->notify->requests != NULL) {
|
||||
change_notify_reply(fsp->conn, fsp->notify->requests->req,
|
||||
change_notify_reply(fsp->notify->requests->req,
|
||||
status, 0, NULL,
|
||||
fsp->notify->requests->reply_fn);
|
||||
change_notify_remove_request(fsp->conn->sconn,
|
||||
@ -419,8 +418,7 @@ static void notify_fsp(files_struct *fsp, uint32 action, const char *name)
|
||||
TALLOC_FREE(fsp->notify->changes);
|
||||
fsp->notify->num_changes = -1;
|
||||
if (fsp->notify->requests != NULL) {
|
||||
change_notify_reply(fsp->conn,
|
||||
fsp->notify->requests->req,
|
||||
change_notify_reply(fsp->notify->requests->req,
|
||||
NT_STATUS_OK,
|
||||
fsp->notify->requests->max_param,
|
||||
fsp->notify,
|
||||
@ -481,8 +479,7 @@ static void notify_fsp(files_struct *fsp, uint32 action, const char *name)
|
||||
* TODO: do we have to walk the lists of requests pending?
|
||||
*/
|
||||
|
||||
change_notify_reply(fsp->conn,
|
||||
fsp->notify->requests->req,
|
||||
change_notify_reply(fsp->notify->requests->req,
|
||||
NT_STATUS_OK,
|
||||
fsp->notify->requests->max_param,
|
||||
fsp->notify,
|
||||
|
@ -1679,7 +1679,7 @@ static void call_nt_transact_notify_change(connection_struct *conn,
|
||||
* here.
|
||||
*/
|
||||
|
||||
change_notify_reply(fsp->conn, req,
|
||||
change_notify_reply(req,
|
||||
NT_STATUS_OK,
|
||||
max_param_count,
|
||||
fsp->notify,
|
||||
|
@ -283,7 +283,7 @@ static struct tevent_req *smbd_smb2_notify_send(TALLOC_CTX *mem_ctx,
|
||||
* here.
|
||||
*/
|
||||
|
||||
change_notify_reply(fsp->conn, smbreq,
|
||||
change_notify_reply(smbreq,
|
||||
NT_STATUS_OK,
|
||||
in_output_buffer_length,
|
||||
fsp->notify,
|
||||
|
Loading…
x
Reference in New Issue
Block a user