netapi: add NetFileClose skeleton.
authorGünther Deschner <gd@samba.org>
Tue, 9 Sep 2008 17:21:48 +0000 (19:21 +0200)
committerGünther Deschner <gd@samba.org>
Thu, 11 Sep 2008 12:36:05 +0000 (14:36 +0200)
Guenther
(This used to be commit 4a006ae644bd85b670aab835dc7d90dadaec3503)

source3/Makefile.in
source3/lib/netapi/file.c [new file with mode: 0644]
source3/lib/netapi/libnetapi.c
source3/lib/netapi/libnetapi.h

index e0f390c28ac03f925cb92764d969f17807362f4f..8b46ab6d8b011132ba58ecff0d5a06aadba6034b 100644 (file)
@@ -1835,7 +1835,8 @@ LIBNETAPI_OBJ0 = lib/netapi/netapi.o \
                 lib/netapi/localgroup.o \
                 lib/netapi/samr.o \
                 lib/netapi/sid.o \
-                lib/netapi/share.o
+                lib/netapi/share.o \
+                lib/netapi/file.o
 
 LIBNETAPI_OBJ  = $(LIBNETAPI_OBJ0) $(LIBNET_OBJ) \
                 $(LIBSMBCONF_OBJ) \
diff --git a/source3/lib/netapi/file.c b/source3/lib/netapi/file.c
new file mode 100644 (file)
index 0000000..aa80e8d
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ *  Unix SMB/CIFS implementation.
+ *  NetApi File Support
+ *  Copyright (C) Guenther Deschner 2008
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "includes.h"
+
+#include "librpc/gen_ndr/libnetapi.h"
+#include "lib/netapi/netapi.h"
+#include "lib/netapi/netapi_private.h"
+#include "lib/netapi/libnetapi.h"
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetFileClose_r(struct libnetapi_ctx *ctx,
+                     struct NetFileClose *r)
+{
+       return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetFileClose_l(struct libnetapi_ctx *ctx,
+                     struct NetFileClose *r)
+{
+       LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetFileClose);
+}
index 639cbf9e65a1b1a412a289175e037afd70db85d4..d83dc28c433b93e2fc6b15450c27fde886726d31 100644 (file)
@@ -2208,3 +2208,45 @@ NET_API_STATUS NetShareSetInfo(const char * server_name /* [in] */,
        return r.out.result;
 }
 
+/****************************************************************
+ NetFileClose
+****************************************************************/
+
+NET_API_STATUS NetFileClose(const char * server_name /* [in] */,
+                           uint32_t fileid /* [in] */)
+{
+       struct NetFileClose 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.fileid = fileid;
+
+       /* Out parameters */
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_IN_DEBUG(NetFileClose, &r);
+       }
+
+       if (LIBNETAPI_LOCAL_SERVER(server_name)) {
+               werr = NetFileClose_l(ctx, &r);
+       } else {
+               werr = NetFileClose_r(ctx, &r);
+       }
+
+       r.out.result = W_ERROR_V(werr);
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_OUT_DEBUG(NetFileClose, &r);
+       }
+
+       return r.out.result;
+}
+
index 766d6fb705b5222fa157c9a34ccbfae50bb0345c..864856366577bed9f80fb9d0709df635e04c5b96 100644 (file)
@@ -399,4 +399,10 @@ WERROR NetShareSetInfo_r(struct libnetapi_ctx *ctx,
                         struct NetShareSetInfo *r);
 WERROR NetShareSetInfo_l(struct libnetapi_ctx *ctx,
                         struct NetShareSetInfo *r);
+NET_API_STATUS NetFileClose(const char * server_name /* [in] */,
+                           uint32_t fileid /* [in] */);
+WERROR NetFileClose_r(struct libnetapi_ctx *ctx,
+                     struct NetFileClose *r);
+WERROR NetFileClose_l(struct libnetapi_ctx *ctx,
+                     struct NetFileClose *r);
 #endif /* __LIBNETAPI_LIBNETAPI__ */