summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/libnet/libnet_conf.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c
index 6603de0199..a8a8e01538 100644
--- a/source3/libnet/libnet_conf.c
+++ b/source3/libnet/libnet_conf.c
@@ -340,6 +340,9 @@ done:
return werr;
}
+/**
+ * set a configuration parameter to the value provided.
+ */
WERROR libnet_smbconf_setparm(const char *service,
const char *param,
const char *valstr)
@@ -366,6 +369,9 @@ done:
return werr;
}
+/**
+ * get the value of a configuration parameter as a string
+ */
WERROR libnet_smbconf_getparm(TALLOC_CTX *mem_ctx,
const char *service,
const char *param,
@@ -413,6 +419,9 @@ done:
return werr;
}
+/**
+ * delete a parameter from configuration
+ */
WERROR libnet_smbconf_delparm(const char *service,
const char *param)
{