[GLUE] Rsync SAMBA_3_2_0 SVN r25598 in order to create the v3-2-test branch.
[ambi/samba-autobuild/.git] / source3 / libsmb / clioplock.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB client oplock functions
4    Copyright (C) Andrew Tridgell 2001
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21
22 /****************************************************************************
23 send an ack for an oplock break request
24 ****************************************************************************/
25 BOOL cli_oplock_ack(struct cli_state *cli, int fnum, unsigned char level)
26 {
27         char *oldbuf = cli->outbuf;
28         pstring buf;
29         BOOL ret;
30
31         cli->outbuf = buf;
32
33         memset(buf,'\0',smb_size);
34         set_message(buf,8,0,True);
35
36         SCVAL(buf,smb_com,SMBlockingX);
37         SSVAL(buf,smb_tid, cli->cnum);
38         cli_setup_packet(cli);
39         SSVAL(buf,smb_vwv0,0xFF);
40         SSVAL(buf,smb_vwv1,0);
41         SSVAL(buf,smb_vwv2,fnum);
42         if (level == 1)
43                 SSVAL(buf,smb_vwv3,0x102); /* levelII oplock break ack */
44         else
45                 SSVAL(buf,smb_vwv3,2); /* exclusive oplock break ack */
46         SIVAL(buf,smb_vwv4,0); /* timoeut */
47         SSVAL(buf,smb_vwv6,0); /* unlockcount */
48         SSVAL(buf,smb_vwv7,0); /* lockcount */
49
50         ret = cli_send_smb(cli);        
51
52         cli->outbuf = oldbuf;
53
54         return ret;
55 }
56
57
58 /****************************************************************************
59 set the oplock handler for a connection
60 ****************************************************************************/
61 void cli_oplock_handler(struct cli_state *cli, 
62                         BOOL (*handler)(struct cli_state *, int, unsigned char))
63 {
64         cli->oplock_handler = handler;
65 }