[libvirt] [PATCH 4/7] admin: Introduce some public constants related to client processing controls

Erik Skultety eskultet at redhat.com
Sun Apr 10 17:56:36 UTC 2016


In order for typed params validation to pass on daemon side, we should
encourage users to use our exported constants with typed params to diminish
to avoid any potential problems related to argument validity.

Signed-off-by: Erik Skultety <eskultet at redhat.com>
---
 include/libvirt/libvirt-admin.h | 42 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/include/libvirt/libvirt-admin.h b/include/libvirt/libvirt-admin.h
index 25bcbf4..5cd9e72 100644
--- a/include/libvirt/libvirt-admin.h
+++ b/include/libvirt/libvirt-admin.h
@@ -110,6 +110,48 @@ virAdmServerPtr virAdmConnectLookupServer(virAdmConnectPtr conn,
                                           const char *name,
                                           unsigned int flags);
 
+/* Manage per-server client processing controls */
+
+/**
+ * VIR_SERVER_CLIENTS_MAX:
+ * Macro for per-server nclients_max limit: represents the upper limit to
+ * number of clients connected to the server, as uint.
+ */
+
+# define VIR_SERVER_CLIENTS_MAX "nclients_max"
+
+/**
+ * VIR_SERVER_CLIENTS_CURRENT:
+ * Macro for per-server nClients attribute: represents the current number of
+ * clients connected to the server, as uint.
+ *
+ * NOTE: This attribute is read-only and any attempt to set it will be denied
+ * by daemon
+ */
+
+# define VIR_SERVER_CLIENTS_CURRENT "nclients"
+
+/**
+ * VIR_SERVER_CLIENTS_UNAUTH_MAX:
+ * Macro for per-server nclients_unauth_max limit: represents the upper limit
+ * to number of clients connected to the server, but not authenticated yet,
+ * as uint.
+ */
+
+# define VIR_SERVER_CLIENTS_UNAUTH_MAX "nclients_unauth_max"
+
+/**
+ * VIR_SERVER_CLIENTS_UNAUTH_CURRENT:
+ * Macro for per-server nclients_unauth attribute: represents the current
+ * number of clients connected to the server, but not authenticated yet,
+ * as uint.
+ *
+ * NOTE: This attribute is read-only and any attempt to set it will be denied
+ * by daemon
+ */
+
+# define VIR_SERVER_CLIENTS_UNAUTH_CURRENT "nclients_unauth"
+
 # ifdef __cplusplus
 }
 # endif
-- 
2.4.11




More information about the libvir-list mailing list