2024-06-26 12:57:41 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2024 Roger Light <roger@atchoo.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: EPL-2.0
|
|
|
|
*
|
2025-05-01 23:57:39 +07:00
|
|
|
* SPDX-FileContributor: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
2024-06-26 12:57:41 +02:00
|
|
|
*/
|
|
|
|
#include "mosquitto_broker_internal.h"
|
2025-05-01 23:57:39 +07:00
|
|
|
#include "mosquitto.h"
|
|
|
|
#include <ctype.h>
|
2024-06-26 12:57:41 +02:00
|
|
|
|
|
|
|
// Dummy implementation of file access
|
|
|
|
// This needs to be implemented if we need to load/store config from files
|
|
|
|
FILE *mosquitto__fopen(const char *path, const char *mode, bool restrict_read)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *fgets_extending(char **buf, int *buflen, FILE *stream)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|