mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 18:27:31 +02:00
fix(mosq): Use sock_utils instead of func stubs
This commit is contained in:
@ -74,16 +74,15 @@ idf_component_register(SRCS ${m_srcs}
|
|||||||
port/callbacks.c
|
port/callbacks.c
|
||||||
port/config.c
|
port/config.c
|
||||||
port/signals.c
|
port/signals.c
|
||||||
port/ifaddrs.c
|
|
||||||
port/broker.c
|
port/broker.c
|
||||||
port/files.c
|
port/files.c
|
||||||
port/net__esp_tls.c
|
port/net__esp_tls.c
|
||||||
|
port/sysconf.c
|
||||||
PRIV_INCLUDE_DIRS port/priv_include port/priv_include/sys ${m_dir} ${m_src_dir}
|
PRIV_INCLUDE_DIRS port/priv_include port/priv_include/sys ${m_dir} ${m_src_dir}
|
||||||
${m_incl_dir} ${m_lib_dir} ${m_deps_dir}
|
${m_incl_dir} ${m_lib_dir} ${m_deps_dir}
|
||||||
INCLUDE_DIRS ${m_incl_dir} port/include
|
INCLUDE_DIRS ${m_incl_dir} port/include
|
||||||
REQUIRES esp-tls
|
REQUIRES esp-tls
|
||||||
PRIV_REQUIRES newlib
|
PRIV_REQUIRES newlib sock_utils)
|
||||||
)
|
|
||||||
|
|
||||||
target_compile_definitions(${COMPONENT_LIB} PRIVATE "WITH_BROKER")
|
target_compile_definitions(${COMPONENT_LIB} PRIVATE "WITH_BROKER")
|
||||||
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
||||||
|
@ -3,3 +3,5 @@ url: https://github.com/espressif/esp-protocols/tree/master/components/mosquitto
|
|||||||
description: The component provides a simple ESP32 port of mosquitto broker
|
description: The component provides a simple ESP32 port of mosquitto broker
|
||||||
dependencies:
|
dependencies:
|
||||||
idf: '>=5.1'
|
idf: '>=5.1'
|
||||||
|
espressif/sock_utils:
|
||||||
|
version: '^0.2'
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
/*
|
|
||||||
* SPDX-FileCopyrightText: 2024 Roger Light <roger@atchoo.org>
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: EPL-2.0
|
|
||||||
*
|
|
||||||
* SPDX-FileContributor: 2024 Espressif Systems (Shanghai) CO LTD
|
|
||||||
*/
|
|
||||||
#include "ifaddrs.h"
|
|
||||||
|
|
||||||
// Dummy implementation of getifaddrs()
|
|
||||||
// TODO: Implement this if we need to use bind_interface option of listener's config
|
|
||||||
int getifaddrs(struct ifaddrs **ifap)
|
|
||||||
{
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
void freeifaddrs(struct ifaddrs *ifa)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
@ -5,20 +5,11 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include "net/if.h"
|
||||||
|
|
||||||
#undef isspace
|
#undef isspace
|
||||||
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
|
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
|
||||||
|
|
||||||
#include_next "config.h"
|
#include_next "config.h"
|
||||||
#define VERSION "v2.0.18~0"
|
|
||||||
|
|
||||||
#define _SC_OPEN_MAX_OVERRIDE 4
|
#define VERSION "v2.0.20~1"
|
||||||
|
|
||||||
// used to override syscall for obtaining max open fds
|
|
||||||
static inline long sysconf(int arg)
|
|
||||||
{
|
|
||||||
if (arg == _SC_OPEN_MAX_OVERRIDE) {
|
|
||||||
return 64;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
/*
|
|
||||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
|
||||||
*/
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#define gai_strerror(x) "gai_strerror() not supported"
|
|
||||||
|
|
||||||
struct ifaddrs {
|
|
||||||
struct ifaddrs *ifa_next; /* Next item in list */
|
|
||||||
char *ifa_name; /* Name of interface */
|
|
||||||
struct sockaddr *ifa_addr; /* Address of interface */
|
|
||||||
};
|
|
||||||
|
|
||||||
int getifaddrs(struct ifaddrs **ifap);
|
|
||||||
void freeifaddrs(struct ifaddrs *ifa);
|
|
@ -1,8 +0,0 @@
|
|||||||
/*
|
|
||||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
|
||||||
*/
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include_next "sys/poll.h"
|
|
18
components/mosquitto/port/sysconf.c
Normal file
18
components/mosquitto/port/sysconf.c
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#define _SC_OPEN_MAX_OVERRIDE 4
|
||||||
|
|
||||||
|
// used to override syscall for obtaining max open fds
|
||||||
|
long sysconf(int arg)
|
||||||
|
{
|
||||||
|
if (arg == _SC_OPEN_MAX_OVERRIDE) {
|
||||||
|
return 64;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
Reference in New Issue
Block a user