s4-dcerpc: move some util functions up to main librpc directory.
authorGünther Deschner <gd@samba.org>
Wed, 1 Apr 2009 20:37:09 +0000 (22:37 +0200)
committerGünther Deschner <gd@samba.org>
Tue, 13 Jul 2010 12:44:09 +0000 (14:44 +0200)
Guenther

Signed-off-by: Simo Sorce <idra@samba.org>
Signed-off-by: Günther Deschner <gd@samba.org>
librpc/rpc/dcerpc_util.c [new file with mode: 0644]
source4/librpc/rpc/dcerpc.c
source4/librpc/wscript_build [changed mode: 0644->0755]

diff --git a/librpc/rpc/dcerpc_util.c b/librpc/rpc/dcerpc_util.c
new file mode 100644 (file)
index 0000000..c859bed
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+   Unix SMB/CIFS implementation.
+   raw dcerpc operations
+
+   Copyright (C) Andrew Tridgell 2003-2005
+   Copyright (C) Jelmer Vernooij 2004-2005
+
+   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/rpc/dcerpc.h"
+#include "librpc/gen_ndr/ndr_dcerpc.h"
+
+/* we need to be able to get/set the fragment length without doing a full
+   decode */
+void dcerpc_set_frag_length(DATA_BLOB *blob, uint16_t v)
+{
+       if (CVAL(blob->data,DCERPC_DREP_OFFSET) & DCERPC_DREP_LE) {
+               SSVAL(blob->data, DCERPC_FRAG_LEN_OFFSET, v);
+       } else {
+               RSSVAL(blob->data, DCERPC_FRAG_LEN_OFFSET, v);
+       }
+}
+
+uint16_t dcerpc_get_frag_length(const DATA_BLOB *blob)
+{
+       if (CVAL(blob->data,DCERPC_DREP_OFFSET) & DCERPC_DREP_LE) {
+               return SVAL(blob->data, DCERPC_FRAG_LEN_OFFSET);
+       } else {
+               return RSVAL(blob->data, DCERPC_FRAG_LEN_OFFSET);
+       }
+}
+
+void dcerpc_set_auth_length(DATA_BLOB *blob, uint16_t v)
+{
+       if (CVAL(blob->data,DCERPC_DREP_OFFSET) & DCERPC_DREP_LE) {
+               SSVAL(blob->data, DCERPC_AUTH_LEN_OFFSET, v);
+       } else {
+               RSSVAL(blob->data, DCERPC_AUTH_LEN_OFFSET, v);
+       }
+}
index 7265105525a7986329b5108e9f80a2e9c63654ac..59aa9c6a8bc07a0b9f15a3df919e9dddb094529b 100644 (file)
@@ -137,36 +137,6 @@ static uint32_t next_call_id(struct dcerpc_connection *c)
        return c->call_id;
 }
 
-/* we need to be able to get/set the fragment length without doing a full
-   decode */
-void dcerpc_set_frag_length(DATA_BLOB *blob, uint16_t v)
-{
-       if (CVAL(blob->data,DCERPC_DREP_OFFSET) & DCERPC_DREP_LE) {
-               SSVAL(blob->data, DCERPC_FRAG_LEN_OFFSET, v);
-       } else {
-               RSSVAL(blob->data, DCERPC_FRAG_LEN_OFFSET, v);
-       }
-}
-
-uint16_t dcerpc_get_frag_length(const DATA_BLOB *blob)
-{
-       if (CVAL(blob->data,DCERPC_DREP_OFFSET) & DCERPC_DREP_LE) {
-               return SVAL(blob->data, DCERPC_FRAG_LEN_OFFSET);
-       } else {
-               return RSVAL(blob->data, DCERPC_FRAG_LEN_OFFSET);
-       }
-}
-
-void dcerpc_set_auth_length(DATA_BLOB *blob, uint16_t v)
-{
-       if (CVAL(blob->data,DCERPC_DREP_OFFSET) & DCERPC_DREP_LE) {
-               SSVAL(blob->data, DCERPC_AUTH_LEN_OFFSET, v);
-       } else {
-               RSSVAL(blob->data, DCERPC_AUTH_LEN_OFFSET, v);
-       }
-}
-
-
 /**
   setup for a ndr pull, also setting up any flags from the binding string
 */
old mode 100644 (file)
new mode 100755 (executable)
index 6de3064..b21647a
@@ -614,7 +614,7 @@ bld.SAMBA_SUBSYSTEM('NDR_DCERPC',
        )
 
 bld.SAMBA_LIBRARY('dcerpc',
-       source='rpc/dcerpc.c rpc/dcerpc_auth.c rpc/dcerpc_schannel.c rpc/dcerpc_util.c rpc/dcerpc_smb.c rpc/dcerpc_smb2.c rpc/dcerpc_sock.c rpc/dcerpc_connect.c rpc/dcerpc_secondary.c ../../librpc/rpc/binding.c ../../librpc/rpc/dcerpc_error.c',
+       source='rpc/dcerpc.c rpc/dcerpc_auth.c rpc/dcerpc_schannel.c rpc/dcerpc_util.c rpc/dcerpc_smb.c rpc/dcerpc_smb2.c rpc/dcerpc_sock.c rpc/dcerpc_connect.c rpc/dcerpc_secondary.c ../../librpc/rpc/binding.c ../../librpc/rpc/dcerpc_error.c ../../librpc/rpc/dcerpc_util.c',
        pc_files='dcerpc.pc',
        deps='samba_socket LIBCLI_RESOLVE LIBCLI_SMB LIBCLI_SMB2 LIBNDR NDR_DCERPC RPC_NDR_EPMAPPER NDR_SCHANNEL RPC_NDR_NETLOGON RPC_NDR_MGMT gensec LIBCLI_AUTH LIBCLI_RAW LP_RESOLVE UTIL_TEVENT',
        autoproto='rpc/dcerpc_proto.h',