mqtt client release v1.1.0 ...

This commit is contained in:
jiejietop
2020-06-18 19:49:14 +08:00
parent 0202c5b5c9
commit cd2368dbeb
241 changed files with 117626 additions and 1584 deletions

View File

@@ -2,7 +2,7 @@
* @Author: jiejie
* @Github: https://github.com/jiejieTop
* @Date: 2019-12-09 21:31:02
* @LastEditTime: 2020-02-25 03:49:11
* @LastEditTime: 2020-05-21 01:09:29
* @Description: the code belongs to jiejie, please keep the author information and source code according to the license.
*/
#ifndef _NETWORK_H_
@@ -10,46 +10,30 @@
#include "mqtt_defconfig.h"
#ifdef MQTT_NETWORK_TYPE_TLS
typedef struct network_ssl_params {
const char *ca_crt;
size_t ca_crt_len;
#if defined(MBEDTLS_FS_IO)
const char *cert_file; // public certificate file
const char *key_file; // pravite certificate file
#else
#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
const char *psk; // PSK string
const char *psk_id; // PSK ID
size_t psk_length; // PSK length
#endif
#endif
unsigned int timeout_ms; // SSL handshake timeout in millisecond
} network_ssl_params_t;
#endif /* MQTT_NETWORK_TYPE_TLS */
typedef struct network_params {
char *addr;
char *port;
#ifdef MQTT_NETWORK_TYPE_TLS
network_ssl_params_t network_ssl_params;
void *nettype_tls_params;
#endif /* MQTT_NETWORK_TYPE_TLS */
} network_params_t;
#define NETWORK_CHANNEL_TCP 0
#define NETWORK_CHANNEL_TLS 1
typedef struct network {
int socket;
network_params_t network_params;
int (*connect)(struct network *);
void (*disconnect)(struct network *);
int (*read)(struct network *, unsigned char *, int, int);
int (*write)(struct network *, unsigned char *, int, int);
const char *host;
const char *port;
int socket;
#ifndef MQTT_NETWORK_TYPE_NO_TLS
int channel; /* tcp or tls */
const char *ca_crt;
unsigned int ca_crt_len;
unsigned int timeout_ms; // SSL handshake timeout in millisecond
void *nettype_tls_params;
#endif
} network_t;
int network_init(network_t* n, network_params_t* network_params);
int network_init(network_t *n, const char *host, const char *port, const char *ca);
int network_set_ca(network_t *n, const char *ca);
void network_set_channel(network_t *n, int channel);
int network_set_host_port(network_t* n, char *host, char *port);
int network_read(network_t* n, unsigned char* buf, int len, int timeout);
int network_write(network_t* n, unsigned char* buf, int len, int timeout);
int network_connect(network_t* n);
void network_disconnect(network_t *n);
void network_release(network_t* n);
#endif