netapi: add NetUserChangePassword skeleton.
authorGünther Deschner <gd@samba.org>
Tue, 24 Jun 2008 22:32:02 +0000 (00:32 +0200)
committerGünther Deschner <gd@samba.org>
Wed, 25 Jun 2008 07:55:11 +0000 (09:55 +0200)
Guenther

source/lib/netapi/libnetapi.c
source/lib/netapi/libnetapi.h
source/lib/netapi/user.c

index 173c4d3c666228e321c1a8ccd3e421adf7ed6871..659c4c7e5f4766b7b878c6e59ad0e6c20b74f1d9 100644 (file)
@@ -585,6 +585,52 @@ NET_API_STATUS NetUserEnum(const char * server_name /* [in] [unique] */,
        return r.out.result;
 }
 
+/****************************************************************
+ NetUserChangePassword
+****************************************************************/
+
+NET_API_STATUS NetUserChangePassword(const char * domain_name /* [in] */,
+                                    const char * user_name /* [in] */,
+                                    const char * old_password /* [in] */,
+                                    const char * new_password /* [in] */)
+{
+       struct NetUserChangePassword r;
+       struct libnetapi_ctx *ctx = NULL;
+       NET_API_STATUS status;
+       WERROR werr;
+
+       status = libnetapi_getctx(&ctx);
+       if (status != 0) {
+               return status;
+       }
+
+       /* In parameters */
+       r.in.domain_name = domain_name;
+       r.in.user_name = user_name;
+       r.in.old_password = old_password;
+       r.in.new_password = new_password;
+
+       /* Out parameters */
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_IN_DEBUG(NetUserChangePassword, &r);
+       }
+
+       if (LIBNETAPI_LOCAL_SERVER(domain_name)) {
+               werr = NetUserChangePassword_l(ctx, &r);
+       } else {
+               werr = NetUserChangePassword_r(ctx, &r);
+       }
+
+       r.out.result = W_ERROR_V(werr);
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_OUT_DEBUG(NetUserChangePassword, &r);
+       }
+
+       return r.out.result;
+}
+
 /****************************************************************
  NetQueryDisplayInformation
 ****************************************************************/
index 12be1cc074e13ae61c5b0d641df0dd2844446c90..1364a4c08fcbf3aef994ab0033a88c1c2bd3147c 100644 (file)
@@ -100,6 +100,14 @@ WERROR NetUserEnum_r(struct libnetapi_ctx *ctx,
                     struct NetUserEnum *r);
 WERROR NetUserEnum_l(struct libnetapi_ctx *ctx,
                     struct NetUserEnum *r);
+NET_API_STATUS NetUserChangePassword(const char * domain_name /* [in] */,
+                                    const char * user_name /* [in] */,
+                                    const char * old_password /* [in] */,
+                                    const char * new_password /* [in] */);
+WERROR NetUserChangePassword_r(struct libnetapi_ctx *ctx,
+                              struct NetUserChangePassword *r);
+WERROR NetUserChangePassword_l(struct libnetapi_ctx *ctx,
+                              struct NetUserChangePassword *r);
 NET_API_STATUS NetQueryDisplayInformation(const char * server_name /* [in] [unique] */,
                                          uint32_t level /* [in] */,
                                          uint32_t idx /* [in] */,
index 53a307a6aace5360c88cc8d4d3fed77726965899..0d8065dd7f5300370d3b773cc5bb4f598a5ba088 100644 (file)
@@ -833,3 +833,21 @@ WERROR NetQueryDisplayInformation_l(struct libnetapi_ctx *ctx,
 {
        return WERR_NOT_SUPPORTED;
 }
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetUserChangePassword_r(struct libnetapi_ctx *ctx,
+                              struct NetUserChangePassword *r)
+{
+       return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetUserChangePassword_l(struct libnetapi_ctx *ctx,
+                              struct NetUserChangePassword *r)
+{
+       return WERR_NOT_SUPPORTED;
+}