diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-13 16:31:58 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-15 12:12:24 +0200 |
commit | 8f44105cc424a7f0a354ac06d5022c72ce73b004 (patch) | |
tree | 138bbbe62a2daedca526039d6f59cea73aafec8f /source3/include | |
parent | 768581eee524540ef576ce2cf56c0b5fbfe862d9 (diff) | |
download | samba-8f44105cc424a7f0a354ac06d5022c72ce73b004.tar.gz samba-8f44105cc424a7f0a354ac06d5022c72ce73b004.tar.bz2 samba-8f44105cc424a7f0a354ac06d5022c72ce73b004.zip |
s3:libsmb: move cli->max_mux to cli->conn.smb1.server.max_mux
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 3701aec554..1e3ab50949 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -70,7 +70,6 @@ struct cli_state { int readbraw_supported; int writebraw_supported; int timeout; /* in milliseconds. */ - size_t max_mux; int initialised; int win95; bool is_guestlogin; @@ -135,6 +134,7 @@ struct cli_state { struct { uint32_t capabilities; uint32_t max_xmit; + uint16_t max_mux; } server; uint32_t capabilities; |