1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

netapi: add NetFileEnum skeleton.

Guenther
This commit is contained in:
Günther Deschner 2008-09-09 22:01:32 +02:00
parent 995dea4062
commit 8113249fe3
3 changed files with 88 additions and 0 deletions

View 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);
}

View 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;
}

View 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__ */