summaryrefslogtreecommitdiff
path: root/lib/util/samba_util.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-08-06 16:35:46 +0200
committerStefan Metzmacher <metze@samba.org>2012-08-17 20:07:07 +0200
commit471a853e343e336adb14a219fba2d2ead9a1db62 (patch)
treed4e72720ee227e6b142f676ef4adc419567a1409 /lib/util/samba_util.h
parent3cdf441da1ff0c969c89285cfd9fd0f968f1a4e9 (diff)
downloadsamba-471a853e343e336adb14a219fba2d2ead9a1db62.tar.gz
samba-471a853e343e336adb14a219fba2d2ead9a1db62.tar.bz2
samba-471a853e343e336adb14a219fba2d2ead9a1db62.zip
lib/util: add server_id_set_disconnected() and server_id_is_disconnected()
Utility functions for handling the special placeholder server-id value for disconnected clients (to be used for durable handles). Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib/util/samba_util.h')
-rw-r--r--lib/util/samba_util.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/util/samba_util.h b/lib/util/samba_util.h
index e69aa7c40c..4a6dd3bc80 100644
--- a/lib/util/samba_util.h
+++ b/lib/util/samba_util.h
@@ -904,4 +904,16 @@ char *server_id_str(TALLOC_CTX *mem_ctx, const struct server_id *id);
struct server_id server_id_from_string(uint32_t local_vnn,
const char *pid_string);
+/**
+ * Set the serverid to the special value that represents a disconnected
+ * client for (e.g.) durable handles.
+ */
+void server_id_set_disconnected(struct server_id *id);
+
+/**
+ * check whether a serverid is the special placeholder for
+ * a disconnected client
+ */
+bool server_id_is_disconnected(const struct server_id *id);
+
#endif /* _SAMBA_UTIL_H_ */