1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-08 07:33:19 +03:00

examples: Use lpcfg_set_cmdline()

Signed-off-by: Pavel Kalugin <pkalugin@inno.tech>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Pavel Kalugin
2023-08-06 17:39:36 +03:00
committed by Andreas Schneider
parent c291ab2a03
commit b9a73ff61b

View File

@@ -21,6 +21,7 @@
#include "source3/include/includes.h" #include "source3/include/includes.h"
#include "popt.h" #include "popt.h"
#include "lib/cmdline/cmdline.h" #include "lib/cmdline/cmdline.h"
#include "lib/param/param.h"
#include "client.h" #include "client.h"
#include "libsmb/proto.h" #include "libsmb/proto.h"
#include "clifuse.h" #include "clifuse.h"
@@ -51,6 +52,7 @@ int main(int argc, char *argv[])
{ {
const char **argv_const = discard_const_p(const char *, argv); const char **argv_const = discard_const_p(const char *, argv);
TALLOC_CTX *frame = talloc_stackframe(); TALLOC_CTX *frame = talloc_stackframe();
struct loadparm_context *lp_ctx = NULL;
poptContext pc; poptContext pc;
int opt, ret; int opt, ret;
int port = 0; int port = 0;
@@ -78,8 +80,9 @@ int main(int argc, char *argv[])
TALLOC_FREE(frame); TALLOC_FREE(frame);
exit(1); exit(1);
} }
lp_set_cmdline("client min protocol", "SMB2"); lp_ctx = samba_cmdline_get_lp_ctx();
lp_set_cmdline("client max protocol", "SMB3_11"); lpcfg_set_cmdline(lp_ctx, "client min protocol", "SMB2");
lpcfg_set_cmdline(lp_ctx, "client max protocol", "SMB3_11");
pc = samba_popt_get_context(getprogname(), pc = samba_popt_get_context(getprogname(),
argc, argc,