summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-22 16:16:28 +0200
committerMichael Adam <obnox@samba.org>2008-04-22 23:46:13 +0200
commit5dd54c58b4d65b28751fda3ba2acbfe71ea7a75f (patch)
tree6eedbdd3db658b52131a9a655578ef09a67dd986 /source3/lib
parent3950e79cfcba6e23e180970c831995658eb30665 (diff)
downloadsamba-5dd54c58b4d65b28751fda3ba2acbfe71ea7a75f.tar.gz
samba-5dd54c58b4d65b28751fda3ba2acbfe71ea7a75f.tar.bz2
samba-5dd54c58b4d65b28751fda3ba2acbfe71ea7a75f.zip
libsmbconf: add a struct smbconf_service to hold the parameter names + values.
Michael (This used to be commit 8118a8348f36b28fa4d46b42a104097cefa33a4d)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/smbconf/smbconf.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/lib/smbconf/smbconf.h b/source3/lib/smbconf/smbconf.h
index 589d14ec64..86ee3ed231 100644
--- a/source3/lib/smbconf/smbconf.h
+++ b/source3/lib/smbconf/smbconf.h
@@ -27,6 +27,13 @@ struct smbconf_csn {
uint64_t csn;
};
+struct smbconf_service {
+ char *name;
+ uint32_t num_params;
+ char **param_names;
+ char **param_values;
+};
+
/**
* intialization dispatcher function.