diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-13 18:07:58 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-15 12:12:25 +0200 |
commit | 14e8ef14a0cf44476160d3c0a12d0166002987a0 (patch) | |
tree | 9d523f0a9bee2292e6adbc9b00974dd197ce3673 /source3/include | |
parent | 596aa96d1746c84c30b8bea395ce1195a418a202 (diff) | |
download | samba-14e8ef14a0cf44476160d3c0a12d0166002987a0.tar.gz samba-14e8ef14a0cf44476160d3c0a12d0166002987a0.tar.bz2 samba-14e8ef14a0cf44476160d3c0a12d0166002987a0.zip |
s3:libsmb: move cli->*braw_supported to cli->conn.smb1.server.*braw
This is currently unused, but we might use it in future.
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 06e3c7aa7d..e51d72789c 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -66,8 +66,6 @@ struct cli_state { uint32 sesskey; int serverzone; uint32 servertime; - int readbraw_supported; - int writebraw_supported; int timeout; /* in milliseconds. */ int initialised; int win95; @@ -135,6 +133,8 @@ struct cli_state { uint32_t max_xmit; uint16_t max_mux; uint16_t security_mode; + bool readbraw; + bool writebraw; } server; uint32_t capabilities; |