summaryrefslogtreecommitdiff
path: root/source4/utils/net/net.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/utils/net/net.h')
-rw-r--r--source4/utils/net/net.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/utils/net/net.h b/source4/utils/net/net.h
index f1ed93fbfb..ba8294c144 100644
--- a/source4/utils/net/net.h
+++ b/source4/utils/net/net.h
@@ -24,12 +24,18 @@
struct net_context {
TALLOC_CTX *mem_ctx;
+ struct {
+ const char *account_name;
+ const char *domain_name;
+ const char *password;
+ } user;
};
struct net_functable {
const char *name;
int (*fn)(struct net_context *ctx, int argc, const char **argv);
- int (*help)(struct net_context *ctx, int argc, const char **argv);
+ int (*usage)(struct net_context *ctx, int argc, const char **argv);
+ int (*help)(struct net_context *ctx, int argc, const char **argv);
};
#endif /* _UTIL_NET_H */