48 lines
1.5 KiB
C
48 lines
1.5 KiB
C
/* mqtt_config.h
|
|
*
|
|
* Copyright (C) 2006-2024 wolfSSL Inc.
|
|
*
|
|
* This file is part of wolfSSL.
|
|
*
|
|
* wolfSSL is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* wolfSSL is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef MQTT_CONFIG_H
|
|
#define MQTT_CONFIG_H
|
|
|
|
/* Enable TLS for MQTT */
|
|
#define ENABLE_MQTT_TLS
|
|
|
|
/* MQTT TLS certificate paths */
|
|
#define MQTT_TLS_CA_CERT "../../../wolfssl/certs/ca-cert.pem"
|
|
#define MQTT_TLS_CLIENT_CERT "../../../wolfssl/certs/client-cert.pem"
|
|
#define MQTT_TLS_CLIENT_KEY "../../../wolfssl/certs/client-key.pem"
|
|
|
|
/* MQTT client configuration */
|
|
#define MQTT_HOST "10.10.0.1"
|
|
#define MQTT_PORT 8883
|
|
#define MQTT_TOPIC "test/topic"
|
|
#define MQTT_QOS 1
|
|
#define MQTT_CLIENT_ID "wolfMQTT-client"
|
|
#define MQTT_KEEP_ALIVE_SEC 60
|
|
#define MQTT_USERNAME NULL
|
|
#define MQTT_PASSWORD NULL
|
|
|
|
/* MQTT Timeouts */
|
|
#define MQTT_CON_TIMEOUT_MS 5000
|
|
#define MQTT_CMD_TIMEOUT_MS 5000
|
|
|
|
#endif /* MQTT_CONFIG_H */
|