summaryrefslogtreecommitdiff
path: root/source4/libcli
diff options
context:
space:
mode:
authorZachary Loafman <zachary.loafman@isilon.com>2009-11-17 23:25:58 +0000
committerTim Prouty <tprouty@samba.org>2009-12-03 20:21:22 -0800
commitf26a500d9ff854734decdcb196136dc8cc19eb4a (patch)
tree2ff455a7cc6f104c564c1354879ac97e2a4cd83d /source4/libcli
parent5882282deaf3ce06c18fe2102f7f8dcc6e79b409 (diff)
downloadsamba-f26a500d9ff854734decdcb196136dc8cc19eb4a.tar.gz
samba-f26a500d9ff854734decdcb196136dc8cc19eb4a.tar.bz2
samba-f26a500d9ff854734decdcb196136dc8cc19eb4a.zip
s4 torture: Add lockread_supported based off of CAP_LOCK_AND_READ
Signed-off-by: Tim Prouty <tprouty@samba.org>
Diffstat (limited to 'source4/libcli')
-rw-r--r--source4/libcli/raw/libcliraw.h1
-rw-r--r--source4/libcli/raw/rawnegotiate.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/source4/libcli/raw/libcliraw.h b/source4/libcli/raw/libcliraw.h
index 37e158a465..69de33ce71 100644
--- a/source4/libcli/raw/libcliraw.h
+++ b/source4/libcli/raw/libcliraw.h
@@ -65,6 +65,7 @@ struct smbcli_negotiate {
time_t server_time;
uint_t readbraw_supported:1;
uint_t writebraw_supported:1;
+ uint_t lockread_supported:1;
char *server_domain;
};
diff --git a/source4/libcli/raw/rawnegotiate.c b/source4/libcli/raw/rawnegotiate.c
index dedc891ac1..67f3bfa0af 100644
--- a/source4/libcli/raw/rawnegotiate.c
+++ b/source4/libcli/raw/rawnegotiate.c
@@ -152,6 +152,9 @@ NTSTATUS smb_raw_negotiate_recv(struct smbcli_request *req)
transport->negotiate.readbraw_supported = true;
transport->negotiate.writebraw_supported = true;
}
+
+ if (transport->negotiate.capabilities & CAP_LOCK_AND_READ)
+ transport->negotiate.lockread_supported = true;
} else if (transport->negotiate.protocol >= PROTOCOL_LANMAN1) {
SMBCLI_CHECK_WCT(req, 13);
transport->negotiate.sec_mode = SVAL(req->in.vwv,VWV(1));