mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00

This creates a role for RFC3549 Netlink monitoring. If the OS supports it (currently, linux) then each pt creates a wsi with the netlink role and dumps the current routing table at pt init. It then maintains a cache of the routing table in each pt. Upon routing table changes an SMD message is issued as an event, and Captive Portal Detection is triggered. All of the pt's current connections are reassessed for routability under the changed routing table, those that no longer have a valid route or gateway are closed.
93 lines
2.5 KiB
CMake
93 lines
2.5 KiB
CMake
#
|
|
# libwebsockets - small server side websockets and web server implementation
|
|
#
|
|
# Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com>
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to
|
|
# deal in the Software without restriction, including without limitation the
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
# IN THE SOFTWARE.
|
|
#
|
|
# The strategy is to only export to PARENT_SCOPE
|
|
#
|
|
# - changes to LIB_LIST
|
|
# - changes to SOURCES
|
|
# - includes via include_directories
|
|
#
|
|
# and keep everything else private
|
|
|
|
include_directories(.)
|
|
|
|
if (LWS_ROLE_MQTT)
|
|
add_subdir_include_directories(mqtt)
|
|
endif()
|
|
|
|
if (LWS_ROLE_DBUS AND NOT LWS_PLAT_FREERTOS)
|
|
add_subdir_include_directories(dbus)
|
|
endif()
|
|
|
|
if (LWS_ROLE_H1 OR LWS_ROLE_H2)
|
|
add_subdir_include_directories(http)
|
|
endif()
|
|
|
|
if (LWS_ROLE_H1)
|
|
add_subdir_include_directories(h1)
|
|
endif()
|
|
|
|
if (LWS_ROLE_H2)
|
|
add_subdir_include_directories(h2)
|
|
endif()
|
|
|
|
if (LWS_ROLE_WS)
|
|
add_subdir_include_directories(ws)
|
|
endif()
|
|
|
|
if (LWS_ROLE_RAW)
|
|
add_subdir_include_directories(raw-skt)
|
|
endif()
|
|
|
|
if (LWS_ROLE_RAW_FILE)
|
|
add_subdir_include_directories(raw-file)
|
|
endif()
|
|
|
|
if (LWS_WITH_CGI)
|
|
add_subdir_include_directories(cgi)
|
|
endif()
|
|
|
|
if (LWS_ROLE_RAW_PROXY)
|
|
add_subdir_include_directories(raw-proxy)
|
|
endif()
|
|
|
|
if (NOT LWS_WITHOUT_SERVER OR LWS_WITH_SECURE_STREAMS_PROCESS_API)
|
|
add_subdir_include_directories(listen)
|
|
endif()
|
|
|
|
if (LWS_WITH_CLIENT AND (LWS_ROLE_H1 OR LWS_ROLE_H2))
|
|
list(APPEND SOURCES
|
|
roles/http/client/client-http.c)
|
|
endif()
|
|
|
|
if (LWS_WITH_NETLINK)
|
|
list(APPEND SOURCES roles/netlink/ops-netlink.c)
|
|
endif()
|
|
|
|
#
|
|
# Keep explicit parent scope exports at end
|
|
#
|
|
|
|
exports_to_parent_scope()
|
|
set(LWS_DEPS_LIB_PATHS ${LWS_DEPS_LIB_PATHS} PARENT_SCOPE)
|
|
|