netapi: add NetFileEnum skeleton.
authorGünther Deschner <gd@samba.org>
Tue, 9 Sep 2008 20:01:32 +0000 (22:01 +0200)
committerGünther Deschner <gd@samba.org>
Thu, 11 Sep 2008 12:37:41 +0000 (14:37 +0200)
Guenther
(This used to be commit 8113249fe3be2968257bd6a4a12153104d91132e)

source3/lib/netapi/file.c
source3/lib/netapi/libnetapi.c
source3/lib/netapi/libnetapi.h

index 8d40fdb04644c5c6ab65e0c6d29f5546ea8367f4..d7c0558eec40f4a662ef680910d1ad8bd3ef998a 100644 (file)
@@ -177,3 +177,21 @@ WERROR NetFileGetInfo_l(struct libnetapi_ctx *ctx,
 {
        LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetFileGetInfo);
 }
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetFileEnum_r(struct libnetapi_ctx *ctx,
+                    struct NetFileEnum *r)
+{
+       return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetFileEnum_l(struct libnetapi_ctx *ctx,
+                    struct NetFileEnum *r)
+{
+       LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetFileEnum);
+}
index 48c019cdf9864e387c34076fbdddbb0d9700ce13..043190a1f9310280e2070e75d0dfedf341d1735d 100644 (file)
@@ -2296,3 +2296,60 @@ NET_API_STATUS NetFileGetInfo(const char * server_name /* [in] */,
        return r.out.result;
 }
 
+/****************************************************************
+ NetFileEnum
+****************************************************************/
+
+NET_API_STATUS NetFileEnum(const char * server_name /* [in] */,
+                          const char * base_path /* [in] */,
+                          const char * user_name /* [in] */,
+                          uint32_t level /* [in] */,
+                          uint8_t **buffer /* [out] [ref] */,
+                          uint32_t prefmaxlen /* [in] */,
+                          uint32_t *entries_read /* [out] [ref] */,
+                          uint32_t *total_entries /* [out] [ref] */,
+                          uint32_t *resume_handle /* [in,out] [ref] */)
+{
+       struct NetFileEnum 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.server_name = server_name;
+       r.in.base_path = base_path;
+       r.in.user_name = user_name;
+       r.in.level = level;
+       r.in.prefmaxlen = prefmaxlen;
+       r.in.resume_handle = resume_handle;
+
+       /* Out parameters */
+       r.out.buffer = buffer;
+       r.out.entries_read = entries_read;
+       r.out.total_entries = total_entries;
+       r.out.resume_handle = resume_handle;
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_IN_DEBUG(NetFileEnum, &r);
+       }
+
+       if (LIBNETAPI_LOCAL_SERVER(server_name)) {
+               werr = NetFileEnum_l(ctx, &r);
+       } else {
+               werr = NetFileEnum_r(ctx, &r);
+       }
+
+       r.out.result = W_ERROR_V(werr);
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_OUT_DEBUG(NetFileEnum, &r);
+       }
+
+       return r.out.result;
+}
+
index 0d2cd3107e2dc2ee4f3656dcaf2773a3d126535b..1b84b75f945364b6f792d8a40b55042e80ae0c7a 100644 (file)
@@ -413,4 +413,17 @@ WERROR NetFileGetInfo_r(struct libnetapi_ctx *ctx,
                        struct NetFileGetInfo *r);
 WERROR NetFileGetInfo_l(struct libnetapi_ctx *ctx,
                        struct NetFileGetInfo *r);
+NET_API_STATUS NetFileEnum(const char * server_name /* [in] */,
+                          const char * base_path /* [in] */,
+                          const char * user_name /* [in] */,
+                          uint32_t level /* [in] */,
+                          uint8_t **buffer /* [out] [ref] */,
+                          uint32_t prefmaxlen /* [in] */,
+                          uint32_t *entries_read /* [out] [ref] */,
+                          uint32_t *total_entries /* [out] [ref] */,
+                          uint32_t *resume_handle /* [in,out] [ref] */);
+WERROR NetFileEnum_r(struct libnetapi_ctx *ctx,
+                    struct NetFileEnum *r);
+WERROR NetFileEnum_l(struct libnetapi_ctx *ctx,
+                    struct NetFileEnum *r);
 #endif /* __LIBNETAPI_LIBNETAPI__ */