summaryrefslogtreecommitdiff
path: root/source3/lib/conn_tdb.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-06-04 15:32:28 +0200
committerStefan Metzmacher <metze@samba.org>2012-06-05 19:28:35 +0200
commit8693a4fff95f2fa1f9c3b93429101c3b3d22218f (patch)
tree79558b09e4d1a3cd3d11164ed3e5729ed5436674 /source3/lib/conn_tdb.h
parent5a122931ede833484d9c47d7a9b5434e85b5c8d7 (diff)
downloadsamba-8693a4fff95f2fa1f9c3b93429101c3b3d22218f.tar.gz
samba-8693a4fff95f2fa1f9c3b93429101c3b3d22218f.tar.bz2
samba-8693a4fff95f2fa1f9c3b93429101c3b3d22218f.zip
s3:lib: split things into a conn_tdb.h
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Jun 5 19:28:35 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/lib/conn_tdb.h')
-rw-r--r--source3/lib/conn_tdb.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/source3/lib/conn_tdb.h b/source3/lib/conn_tdb.h
new file mode 100644
index 0000000000..ee4befed16
--- /dev/null
+++ b/source3/lib/conn_tdb.h
@@ -0,0 +1,62 @@
+/*
+ Unix SMB/CIFS implementation.
+ Low-level connections.tdb access functions
+ Copyright (C) Volker Lendecke 2007
+
+ 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/>.
+*/
+
+/* key and data in the connections database - used in smbstatus and smbd */
+struct connections_key {
+ struct server_id pid;
+ int cnum;
+ fstring name;
+};
+
+struct connections_data {
+ int magic;
+ struct server_id pid;
+ int cnum;
+ uid_t uid;
+ gid_t gid;
+ char servicename[FSTRING_LEN];
+ char addr[24];
+ char machine[FSTRING_LEN];
+ time_t start;
+
+ /*
+ * This field used to hold the msg_flags. For compatibility reasons,
+ * keep the data structure in the tdb file the same.
+ */
+ uint32 unused_compatitibility_field;
+};
+
+/* The following definitions come from lib/conn_tdb.c */
+
+struct db_record *connections_fetch_entry(TALLOC_CTX *mem_ctx,
+ connection_struct *conn,
+ const char *name);
+int connections_traverse(int (*fn)(struct db_record *rec,
+ void *private_data),
+ void *private_data);
+int connections_forall(int (*fn)(struct db_record *rec,
+ const struct connections_key *key,
+ const struct connections_data *data,
+ void *private_data),
+ void *private_data);
+int connections_forall_read(int (*fn)(const struct connections_key *key,
+ const struct connections_data *data,
+ void *private_data),
+ void *private_data);
+bool connections_init(bool rw);