mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
cc4e11d028
The only user by now was net serverid wipedbs, and there it was easy to replace Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Mon Feb 13 10:49:43 UTC 2023 on atb-devel-224
76 lines
2.6 KiB
C
76 lines
2.6 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
*
|
|
* Copyright (C) Stefan Metzmacher 2012
|
|
* Copyright (C) Michael Adam 2012
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __SMBXSRV_OPEN_H__
|
|
#define __SMBXSRV_OPEN_H__
|
|
|
|
#include "replace.h"
|
|
#include "libcli/util/ntstatus.h"
|
|
#include "lib/util/time.h"
|
|
#include "lib/util/data_blob.h"
|
|
#include "librpc/gen_ndr/misc.h"
|
|
|
|
struct smbXsrv_connection;
|
|
struct auth_session_info;
|
|
struct smbXsrv_open;
|
|
struct smbXsrv_open_global0;
|
|
struct smbXsrv_client;
|
|
|
|
NTSTATUS smbXsrv_open_global_init(void);
|
|
NTSTATUS smbXsrv_open_create(struct smbXsrv_connection *conn,
|
|
struct auth_session_info *session_info,
|
|
NTTIME now,
|
|
struct smbXsrv_open **_open);
|
|
NTSTATUS smbXsrv_open_update(struct smbXsrv_open *_open);
|
|
NTSTATUS smbXsrv_open_close(struct smbXsrv_open *op, NTTIME now);
|
|
NTSTATUS smb1srv_open_table_init(struct smbXsrv_connection *conn);
|
|
NTSTATUS smb1srv_open_lookup(struct smbXsrv_connection *conn,
|
|
uint16_t fnum, NTTIME now,
|
|
struct smbXsrv_open **_open);
|
|
NTSTATUS smb2srv_open_table_init(struct smbXsrv_connection *conn);
|
|
NTSTATUS smb2srv_open_lookup(struct smbXsrv_connection *conn,
|
|
uint64_t persistent_id,
|
|
uint64_t volatile_id,
|
|
NTTIME now,
|
|
struct smbXsrv_open **_open);
|
|
NTSTATUS smbXsrv_open_purge_replay_cache(struct smbXsrv_client *client,
|
|
const struct GUID *create_guid);
|
|
NTSTATUS smb2srv_open_lookup_replay_cache(struct smbXsrv_connection *conn,
|
|
struct GUID caller_req_guid,
|
|
struct GUID create_guid,
|
|
const char *name,
|
|
NTTIME now,
|
|
struct smbXsrv_open **_open);
|
|
NTSTATUS smb2srv_open_recreate(struct smbXsrv_connection *conn,
|
|
struct auth_session_info *session_info,
|
|
uint64_t persistent_id,
|
|
const struct GUID *create_guid,
|
|
NTTIME now,
|
|
struct smbXsrv_open **_open);
|
|
|
|
struct db_record;
|
|
NTSTATUS smbXsrv_open_global_traverse(
|
|
int (*fn)(struct db_record *rec, struct smbXsrv_open_global0 *, void *),
|
|
void *private_data);
|
|
|
|
NTSTATUS smbXsrv_open_cleanup(uint64_t persistent_id);
|
|
|
|
#endif
|