diff options
author | fiaxh <git@lightrise.org> | 2021-10-12 16:26:50 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-10-12 19:43:57 +0200 |
commit | e8c162eae3827a4f2abdf97b1e42f7398744c10e (patch) | |
tree | 30c0e693057f9998550d74c17291441b05fb970f /xmpp-vala/src/core | |
parent | bea85c8ab5f74d96f37c1b3a6ea1e83edd0de500 (diff) | |
download | dino-e8c162eae3827a4f2abdf97b1e42f7398744c10e.tar.gz dino-e8c162eae3827a4f2abdf97b1e42f7398744c10e.zip |
Fix misc compiler warnings
Diffstat (limited to 'xmpp-vala/src/core')
-rw-r--r-- | xmpp-vala/src/core/direct_tls_xmpp_stream.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xmpp-vala/src/core/direct_tls_xmpp_stream.vala b/xmpp-vala/src/core/direct_tls_xmpp_stream.vala index 43b7114a..ee796350 100644 --- a/xmpp-vala/src/core/direct_tls_xmpp_stream.vala +++ b/xmpp-vala/src/core/direct_tls_xmpp_stream.vala @@ -1,5 +1,7 @@ public class Xmpp.DirectTlsXmppStream : TlsXmppStream { + const string[] ADVERTISED_PROTOCOLS = {"xmpp-client"}; + string host; uint16 port; TlsXmppStream.OnInvalidCertWrapper on_invalid_cert; @@ -18,7 +20,7 @@ public class Xmpp.DirectTlsXmppStream : TlsXmppStream { IOStream? io_stream = yield client.connect_to_host_async(host, port); TlsConnection tls_connection = TlsClientConnection.new(io_stream, new NetworkAddress(remote_name.to_string(), port)); #if ALPN_SUPPORT - tls_connection.set_advertised_protocols(new string[]{"xmpp-client"}); + tls_connection.set_advertised_protocols(ADVERTISED_PROTOCOLS); #endif tls_connection.accept_certificate.connect(on_invalid_certificate); tls_connection.accept_certificate.connect((cert, flags) => on_invalid_cert.func(cert, flags)); |