summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-13 23:45:57 +0100
committerMichael Adam <obnox@samba.org>2008-01-13 23:45:57 +0100
commit801eeaec09f9a53759185a834f42e3d266ec4bce (patch)
tree97b6c8d392802d04746415db271fbb69605e1440 /source3/utils
parenta6bf13ce971a87c1291082a4bc90fdca6d2b8c2b (diff)
downloadsamba-801eeaec09f9a53759185a834f42e3d266ec4bce.tar.gz
samba-801eeaec09f9a53759185a834f42e3d266ec4bce.tar.bz2
samba-801eeaec09f9a53759185a834f42e3d266ec4bce.zip
Add and modify comments in net_conf.c
Michael (This used to be commit b3afc8391d40745328172ba012f0ffc166d75aa9)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/net_conf.c50
1 files changed, 42 insertions, 8 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c
index 9a4f3ff69a..26ed41b2a0 100644
--- a/source3/utils/net_conf.c
+++ b/source3/utils/net_conf.c
@@ -31,9 +31,11 @@
#include "utils/net.h"
#include "libnet/libnet.h"
-/*
+/**********************************************************************
+ *
* usage functions
- */
+ *
+ **********************************************************************/
static int net_conf_list_usage(int argc, const char **argv)
{
@@ -109,10 +111,16 @@ static int net_conf_delparm_usage(int argc, const char **argv)
}
-/*
+/**********************************************************************
+ *
* Helper functions
- */
+ *
+ **********************************************************************/
+/**
+ * This formats an in-memory smbconf parameter to a string.
+ * The result string is allocated with talloc.
+ */
static char *parm_valstr(TALLOC_CTX *ctx, struct parm_struct *parm,
struct share_params *share)
{
@@ -187,6 +195,10 @@ static char *parm_valstr(TALLOC_CTX *ctx, struct parm_struct *parm,
return valstr;
}
+/**
+ * This functions imports a configuration that has previously
+ * been loaded with lp_load() to registry.
+ */
static int import_process_service(TALLOC_CTX *ctx,
struct libnet_conf_ctx *conf_ctx,
struct share_params *share)
@@ -263,7 +275,10 @@ done:
return ret;
}
-/* return true iff there are nondefault globals */
+/**
+ * Return true iff there are nondefault globals in the
+ * currently loaded configuration.
+ */
static bool globals_exist(void)
{
int i = 0;
@@ -277,9 +292,12 @@ static bool globals_exist(void)
return false;
}
-/*
- * the conf functions
- */
+
+/**********************************************************************
+ *
+ * the main conf functions
+ *
+ **********************************************************************/
static int net_conf_list(struct libnet_conf_ctx *conf_ctx,
int argc, const char **argv)
@@ -852,6 +870,18 @@ done:
return ret;
}
+
+/**********************************************************************
+ *
+ * Wrapper and net_conf_run_function mechanism.
+ *
+ **********************************************************************/
+
+/**
+ * Wrapper function to call the main conf functions.
+ * The wrapper calls handles opening and closing of the
+ * configuration.
+ */
static int net_conf_wrap_function(int (*fn)(struct libnet_conf_ctx *,
int, const char **),
int argc, const char **argv)
@@ -885,6 +915,10 @@ struct conf_functable {
const char *helptext;
};
+/**
+ * This imitates net_run_function2 but calls the main functions
+ * through the wrapper net_conf_wrap_function().
+ */
static int net_conf_run_function(int argc, const char **argv,
const char *whoami,
struct conf_functable *table)