From c209120056ceeff94f928301cbfcbade3c507994 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 16 Oct 2004 19:00:27 +0000 Subject: r3006: Poptify (This used to be commit 5c46747c36aa09289c6b2df3927833aec78059fd) --- source4/utils/ndrdump.c | 42 ++++++++++++++++++++++++++---------------- 1 file changed, 26 insertions(+), 16 deletions(-) (limited to 'source4/utils/ndrdump.c') diff --git a/source4/utils/ndrdump.c b/source4/utils/ndrdump.c index 22310d7985..8c4f1fef77 100644 --- a/source4/utils/ndrdump.c +++ b/source4/utils/ndrdump.c @@ -56,16 +56,10 @@ static const struct dcerpc_interface_call *find_function( return &p->calls[i]; } -static void usage(void) -{ - printf("Usage: ndrdump \n"); -} - static void show_pipes(void) { int i; - usage(); printf("\nYou must specify a pipe\n"); printf("known pipes are:\n"); for (i=0;dcerpc_pipes[i];i++) { @@ -81,7 +75,6 @@ static void show_pipes(void) static void show_functions(const struct dcerpc_interface_table *p) { int i; - usage(); printf("\nYou must specify a function\n"); printf("known functions on '%s' are:\n", p->name); for (i=0;inum_calls;i++) { @@ -90,7 +83,7 @@ static void show_functions(const struct dcerpc_interface_table *p) exit(1); } - int main(int argc, char *argv[]) + int main(int argc, const char *argv[]) { const struct dcerpc_interface_table *p; const struct dcerpc_interface_call *f; @@ -101,32 +94,47 @@ static void show_functions(const struct dcerpc_interface_table *p) struct ndr_pull *ndr; TALLOC_CTX *mem_ctx; int flags; + poptContext pc; NTSTATUS status; void *st; + int opt; struct ndr_print *pr; + struct poptOption long_options[] = { + POPT_AUTOHELP + POPT_TABLEEND + }; DEBUGLEVEL = 10; setup_logging("ndrdump", DEBUG_STDOUT); - if (argc < 2) { + pc = poptGetContext("ndrdump", argc, argv, long_options, 0); + + poptSetOtherOptionHelp(pc, " "); + + while ((opt = poptGetNextOpt(pc)) != -1) { + } + + pipe_name = poptGetArg(pc); + + if (!pipe_name) { + poptPrintUsage(pc, stderr, 0); show_pipes(); exit(1); } - pipe_name = argv[1]; - p = find_pipe(pipe_name); - if (argc < 5) { + function = poptGetArg(pc); + inout = poptGetArg(pc); + filename = poptGetArg(pc); + + if (!function || !inout || !filename) { + poptPrintUsage(pc, stderr, 0); show_functions(p); exit(1); } - function = argv[2]; - inout = argv[3]; - filename = argv[4]; - if (strcmp(inout, "in") == 0 || strcmp(inout, "request") == 0) { flags = NDR_IN; @@ -187,5 +195,7 @@ static void show_functions(const struct dcerpc_interface_table *p) talloc_free(pr); + poptFreeContext(pc); + return 0; } -- cgit