=doc #3684 Document that SslTlsSupport doesn't support Tcp.WriteCommand.

This commit is contained in:
Björn Antonsson 2013-10-23 09:02:10 +02:00
parent d9d83c2661
commit 6784d6bc2f
2 changed files with 10 additions and 8 deletions

View file

@ -349,7 +349,8 @@ and forward any replies to some ``listener`` actor.
.. warning::
The SslTlsSupport does not support messages that are larger than the size
of the send buffer on the socket. Trying to send such a message will result
in a ``CommandFailed``. If you need to send large messages over SSL, then
they have to be sent in chunks.
The SslTlsSupport currently does not support using a ``Tcp.WriteCommand``
other than ``Tcp.Write``, like for example ``Tcp.WriteFile``. It also doesn't
support messages that are larger than the size of the send buffer on the socket.
Trying to send such a message will result in a ``CommandFailed``. If you need
to send large messages over SSL, then they have to be sent in chunks.