s4-smbtorture: restructure spoolss server implementations in RPC-SPOOLSS-NOTIFY.
authorGünther Deschner <gd@samba.org>
Mon, 18 Jan 2010 23:22:57 +0000 (00:22 +0100)
committerGünther Deschner <gd@samba.org>
Tue, 19 Jan 2010 13:14:30 +0000 (14:14 +0100)
Guenther

source4/torture/rpc/spoolss_notify.c

index eacf6943fc962a254bea9bce24afb725b33964e5..3d37781cb54f7b2da69342667f6293fd43cd3dd5 100644 (file)
@@ -23,6 +23,7 @@
 #include "system/filesys.h"
 #include "torture/rpc/rpc.h"
 #include "librpc/gen_ndr/ndr_spoolss_c.h"
+#include "librpc/gen_ndr/ndr_spoolss.h"
 #include "rpc_server/dcerpc_server.h"
 #include "rpc_server/service_rpc.h"
 #include "smbd/process_model.h"
@@ -76,6 +77,23 @@ static struct received_packet {
        struct received_packet *prev, *next;
 } *received_packets = NULL;
 
+static WERROR _spoolss_ReplyOpenPrinter(struct dcesrv_call_state *dce_call,
+                                       TALLOC_CTX *mem_ctx,
+                                       struct spoolss_ReplyOpenPrinter *r)
+{
+       DEBUG(1,("_spoolss_ReplyOpenPrinter\n"));
+
+       NDR_PRINT_IN_DEBUG(spoolss_ReplyOpenPrinter, r);
+
+       r->out.handle = talloc(r, struct policy_handle);
+       r->out.handle->handle_type = 42;
+       r->out.handle->uuid = GUID_random();
+       r->out.result = WERR_OK;
+
+       NDR_PRINT_OUT_DEBUG(spoolss_ReplyOpenPrinter, r);
+
+       return WERR_OK;
+}
 
 static NTSTATUS spoolss__op_dispatch(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, void *r)
 {
@@ -91,7 +109,7 @@ static NTSTATUS spoolss__op_dispatch(struct dcesrv_call_state *dce_call, TALLOC_
        switch (opnum) {
        case 58: {
                struct spoolss_ReplyOpenPrinter *r2 = (struct spoolss_ReplyOpenPrinter *)r;
-               r2->out.result = WERR_OK;
+               r2->out.result = _spoolss_ReplyOpenPrinter(dce_call, mem_ctx, r2);
                break;
        }