summaryrefslogtreecommitdiffstats
path: root/source3/include/libsmbclient.h
diff options
context:
space:
mode:
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-03-01 20:55:21 -0500
committerDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-03-01 20:55:21 -0500
commit0bd3df33eddf305f5d812ab1788232c925576c5e (patch)
tree78e43438f4bf25bcc21dbb8e27b6d9995197e9c9 /source3/include/libsmbclient.h
parent223940d9a887c5b98a5c873797302a6a9407ad7f (diff)
downloadsamba-0bd3df33eddf305f5d812ab1788232c925576c5e.tar.gz
samba-0bd3df33eddf305f5d812ab1788232c925576c5e.tar.xz
samba-0bd3df33eddf305f5d812ab1788232c925576c5e.zip
Mark smbc_option_{get,set} as deprecated
(This used to be commit a8b4b773d4647f28e7b92c5968469721d34eb550)
Diffstat (limited to 'source3/include/libsmbclient.h')
-rw-r--r--source3/include/libsmbclient.h26
1 files changed, 3 insertions, 23 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h
index 28cad351dec..058ac642108 100644
--- a/source3/include/libsmbclient.h
+++ b/source3/include/libsmbclient.h
@@ -142,7 +142,7 @@ struct smbc_dirent
/*
* Valid values for the option "open_share_mode", when calling
- * smbc_option_set()
+ * smbc_setOptionOpenShareMode()
*/
typedef enum smbc_share_mode
{
@@ -1010,35 +1010,15 @@ int smbc_free_context(SMBCCTX * context, int shutdown_ctx);
/**@ingroup misc
- * Each time the context structure is changed, we have binary backward
- * compatibility issues. Instead of modifying the public portions of the
- * context structure to add new options, instead, we put them in the internal
- * portion of the context structure and provide a set function for these new
- * options.
- *
- * @param context A pointer to a SMBCCTX obtained from smbc_new_context()
- *
- * @param option_name
- * The name of the option for which the value is to be set
- *
- * @param option_value
- * The new value of the option being set
*
+ * @DEPRECATED. Use smbc_setOption*() functions instead.
*/
void
smbc_option_set(SMBCCTX *context,
char *option_name,
... /* option_value */);
/*
- * Retrieve the current value of an option
- *
- * @param context A pointer to a SMBCCTX obtained from smbc_new_context()
- *
- * @param option_name
- * The name of the option for which the value is to be
- * retrieved
- *
- * @return The value of the specified option.
+ * @DEPRECATED. Use smbc_getOption*() functions instead.
*/
void *
smbc_option_get(SMBCCTX *context,