svn commit: samba r11903 - in branches/SAMBA_4_0/source/libcli/smb2: .

tridge at samba.org tridge at samba.org
Fri Nov 25 11:11:48 GMT 2005


Author: tridge
Date: 2005-11-25 11:11:47 +0000 (Fri, 25 Nov 2005)
New Revision: 11903

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=11903

Log:

added smb2_tdis() (opcode 4)



Added:
   branches/SAMBA_4_0/source/libcli/smb2/tdis.c
Modified:
   branches/SAMBA_4_0/source/libcli/smb2/config.mk


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/smb2/config.mk
===================================================================
--- branches/SAMBA_4_0/source/libcli/smb2/config.mk	2005-11-25 11:05:21 UTC (rev 11902)
+++ branches/SAMBA_4_0/source/libcli/smb2/config.mk	2005-11-25 11:11:47 UTC (rev 11903)
@@ -14,5 +14,6 @@
 	setinfo.o \
 	find.o \
 	trans.o \
-	logoff.o
+	logoff.o \
+	tdis.o
 REQUIRED_SUBSYSTEMS = LIBCLI_RAW LIBPACKET

Added: branches/SAMBA_4_0/source/libcli/smb2/tdis.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/smb2/tdis.c	2005-11-25 11:05:21 UTC (rev 11902)
+++ branches/SAMBA_4_0/source/libcli/smb2/tdis.c	2005-11-25 11:11:47 UTC (rev 11903)
@@ -0,0 +1,67 @@
+/* 
+   Unix SMB/CIFS implementation.
+
+   SMB2 client tdis handling
+
+   Copyright (C) Andrew Tridgell 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 2 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, write to the Free Software
+   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "includes.h"
+#include "libcli/raw/libcliraw.h"
+#include "libcli/smb2/smb2.h"
+#include "libcli/smb2/smb2_calls.h"
+
+/*
+  send a tdis request
+*/
+struct smb2_request *smb2_tdis_send(struct smb2_tree *tree)
+{
+	struct smb2_request *req;
+
+	req = smb2_request_init_tree(tree, SMB2_OP_TDIS, 0x04, 0);
+	if (req == NULL) return NULL;
+
+	SSVAL(req->out.body, 0x02, 0);
+
+	smb2_transport_send(req);
+
+	return req;
+}
+
+
+/*
+  recv a tdis reply
+*/
+NTSTATUS smb2_tdis_recv(struct smb2_request *req)
+{
+	if (!smb2_request_receive(req) || 
+	    smb2_request_is_error(req)) {
+		return smb2_request_destroy(req);
+	}
+
+	SMB2_CHECK_PACKET_RECV(req, 0x04, False);
+	return smb2_request_destroy(req);
+}
+
+/*
+  sync tdis request
+*/
+NTSTATUS smb2_tdis(struct smb2_tree *tree)
+{
+	struct smb2_request *req = smb2_tdis_send(tree);
+	return smb2_tdis_recv(req);
+}



More information about the samba-cvs mailing list