diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-29 06:01:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:00 -0500 |
commit | 072dfad0afc9940c4c51cbecad9b3acf0cc38844 (patch) | |
tree | 371bf1f77b46e34d5311e30db9ddd0053affc327 /source4/include | |
parent | d1a732dd2d0828cb3f1f67e86acffcb053ca6851 (diff) | |
download | samba-072dfad0afc9940c4c51cbecad9b3acf0cc38844.tar.gz samba-072dfad0afc9940c4c51cbecad9b3acf0cc38844.tar.bz2 samba-072dfad0afc9940c4c51cbecad9b3acf0cc38844.zip |
r3354: honor "max xmit" and "max mux" from smb.conf in our client code. This
is important as it allows the test suite to exercise the multiple
reply logic in smbd for trans2 search replies.
(This used to be commit 865159016ab1e806465a55697444228fb3fa286e)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/cli_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/include/cli_context.h b/source4/include/cli_context.h index bdf90018d5..1b20985fd8 100644 --- a/source4/include/cli_context.h +++ b/source4/include/cli_context.h @@ -91,6 +91,8 @@ struct smbcli_options { uint_t use_oplocks:1; uint_t use_level2_oplocks:1; uint_t use_spnego:1; + uint32_t max_xmit; + uint16_t max_mux; }; /* this is the context for the client transport layer */ |