Apply patch for bug #56098: Support for MQTT over TLS port 443 instead of 8883

This commit is contained in:
Dirk Ziegelmeier
2019-04-30 13:22:09 +02:00
parent 295996f912
commit 3d7ff53070
2 changed files with 24 additions and 0 deletions

View File

@@ -94,6 +94,15 @@ struct altcp_tls_config *altcp_tls_create_config_client_2wayauth(const u8_t *ca,
const u8_t *privkey_pass, size_t privkey_pass_len,
const u8_t *cert, size_t cert_len);
/** @ingroup altcp_tls
* Configure ALPN TLS extension
* Example:<br>
* static const char *g_alpn_protocols[] = { "x-amzn-mqtt-ca", NULL };<br>
* tls_config = altcp_tls_create_config_client(ca, ca_len);<br>
* altcp_tls_conf_alpn_protocols(tls_config, g_alpn_protocols);<br>
*/
int altcp_tls_configure_alpn_protocols(struct altcp_tls_config *conf, const char **protos);
/** @ingroup altcp_tls
* Free an ALTCP_TLS configuration handle
*/