Files
esp-protocols/components/mosquitto/port/include/mosq_broker.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
294 B
C
Raw Normal View History

/*
* 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);