mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-11-27 04:39:21 +01:00
17 lines
294 B
C
17 lines
294 B
C
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
#include "mosquitto.h"
|
||
|
|
|
||
|
|
struct mosquitto__config;
|
||
|
|
|
||
|
|
struct mosq_broker_config {
|
||
|
|
char *host;
|
||
|
|
int port;
|
||
|
|
};
|
||
|
|
|
||
|
|
int run_broker(struct mosq_broker_config *config);
|