diff options
author | Jeremy Allison <jra@samba.org> | 2010-07-16 14:39:52 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-07-16 14:39:52 -0700 |
commit | 3036822985cf109cfe551f5306cb495a659fd112 (patch) | |
tree | 46232fc6a1dd711fcbb9949283d1499e9e2f98ab /docs-xml/smbdotconf/protocol | |
parent | c5e85a4987ca846741efac855aaf313d851d954c (diff) | |
download | samba-3036822985cf109cfe551f5306cb495a659fd112.tar.gz samba-3036822985cf109cfe551f5306cb495a659fd112.tar.bz2 samba-3036822985cf109cfe551f5306cb495a659fd112.zip |
Fix bug #7570 - New smb2 max parameters are undocumented.
Jeremy.
Diffstat (limited to 'docs-xml/smbdotconf/protocol')
-rw-r--r-- | docs-xml/smbdotconf/protocol/smb2maxread.xml | 17 | ||||
-rw-r--r-- | docs-xml/smbdotconf/protocol/smb2maxtrans.xml | 17 | ||||
-rw-r--r-- | docs-xml/smbdotconf/protocol/smb2maxwrite.xml | 17 |
3 files changed, 51 insertions, 0 deletions
diff --git a/docs-xml/smbdotconf/protocol/smb2maxread.xml b/docs-xml/smbdotconf/protocol/smb2maxread.xml new file mode 100644 index 0000000000..f4bcb4bbf0 --- /dev/null +++ b/docs-xml/smbdotconf/protocol/smb2maxread.xml @@ -0,0 +1,17 @@ +<samba:parameter name="smb2 max read" + type="integer" + context="G" + advanced="1" developer="1" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> +<para>This option specifies the protocol value that <citerefentry><refentrytitle>smbd</refentrytitle> +<manvolnum>8</manvolnum></citerefentry> will return to a client, informing the client of the largest +size that may be returned by a single SMB2 read call. +</para> +<para>The default is 1048576 bytes (1MB), which is the same as a Windows7 SMB2 server.</para> +</description> + +<related>smb2 max write</related> +<related>smb2 max trans</related> +<value type="default">1048576</value> +</samba:parameter> diff --git a/docs-xml/smbdotconf/protocol/smb2maxtrans.xml b/docs-xml/smbdotconf/protocol/smb2maxtrans.xml new file mode 100644 index 0000000000..dd654f46d1 --- /dev/null +++ b/docs-xml/smbdotconf/protocol/smb2maxtrans.xml @@ -0,0 +1,17 @@ +<samba:parameter name="smb2 max trans" + type="integer" + context="G" + advanced="1" developer="1" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> +<para>This option specifies the protocol value that <citerefentry><refentrytitle>smbd</refentrytitle> +<manvolnum>8</manvolnum></citerefentry> will return to a client, informing the client of the largest +size of buffer that may be used in querying file meta-data via QUERY_INFO and related SMB2 calls. +</para> +<para>The default is 1048576 bytes (1MB), which is the same as a Windows7 SMB2 server.</para> +</description> + +<related>smb2 max read</related> +<related>smb2 max write</related> +<value type="default">1048576</value> +</samba:parameter> diff --git a/docs-xml/smbdotconf/protocol/smb2maxwrite.xml b/docs-xml/smbdotconf/protocol/smb2maxwrite.xml new file mode 100644 index 0000000000..cdbc47af47 --- /dev/null +++ b/docs-xml/smbdotconf/protocol/smb2maxwrite.xml @@ -0,0 +1,17 @@ +<samba:parameter name="smb2 max write" + type="integer" + context="G" + advanced="1" developer="1" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> +<para>This option specifies the protocol value that <citerefentry><refentrytitle>smbd</refentrytitle> +<manvolnum>8</manvolnum></citerefentry> will return to a client, informing the client of the largest +size that may be sent to the server by a single SMB2 write call. +</para> +<para>The default is 1048576 bytes (1MB), which is the same as a Windows7 SMB2 server.</para> +</description> + +<related>smb2 max read</related> +<related>smb2 max trans</related> +<value type="default">1048576</value> +</samba:parameter> |