1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-10-31 17:25:58 +01:00

Fix typo in XmppNioTcpConnection: s/Therfore/Therefore/

This commit is contained in:
Florian Schmaus 2019-05-29 11:49:16 +02:00
parent 178ae8abef
commit 60c7e0ab76

View file

@ -1116,7 +1116,7 @@ public class XmppNioTcpConnection extends AbstractXmppNioConnection {
// remote hostname information, in which case peerHost needs to be specified." that A should be used. TLS // remote hostname information, in which case peerHost needs to be specified." that A should be used. TLS
// session resumption may would need or at least benefit from B. Variant A would also be required if the // session resumption may would need or at least benefit from B. Variant A would also be required if the
// String is used for certificate verification. And it appears at least likely that TLS session resumption // String is used for certificate verification. And it appears at least likely that TLS session resumption
// would not be hurt by using variant A. Therfore we currently use variant A. // would not be hurt by using variant A. Therefore we currently use variant A.
engine = smackTlsContext.sslContext.createSSLEngine(config.getXMPPServiceDomain().toString(), remoteAddress.getPort()); engine = smackTlsContext.sslContext.createSSLEngine(config.getXMPPServiceDomain().toString(), remoteAddress.getPort());
engine.setUseClientMode(true); engine.setUseClientMode(true);