Files
esp-protocols/components/mosquitto/port/priv_include/config.h
David Cermak ac1b2b7573 bump(mosq): 2.0.20~2 -> 2.0.20~3
2.0.20~3
Bug Fixes
- Support build on older IDF branches (13b90ad1)
- Fix misleading error when accepting connection (fd410061, #807)
- Make mosquitto component c++ compatible (c4169765, #817)
- include config.h before any system header (1b1ede43)
2025-07-01 12:20:45 +02:00

24 lines
640 B
C

/*
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include_next "config.h"
/*
* =======================================================================
* Do NOT include any other header before this comment.
* config.h header configures critical macros that must be set before any
* system or standard library headers are included.
* =======================================================================
*/
#include <ctype.h>
#include "net/if.h"
#undef isspace
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
#define VERSION "v2.0.20~3"