From 8e145134d5c3dd1e5a7ed93f87147a4acf281f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20De=20Keersmaeker?= <francois.dekeersmaeker@uclouvain.be> Date: Tue, 9 Jul 2024 14:55:44 +0200 Subject: [PATCH] Updated README --- CMakeLists.txt | 3 +-- README.md | 10 +++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4864265..60c93c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20) # Project name -project(iot-firewall C) +project(smart-home-firewall C) # Set variable whether we are cross-compiling for OpenWrt IF( CMAKE_CROSSCOMPILING AND DEFINED ENV{STAGING_DIR} ) @@ -16,7 +16,6 @@ link_directories($ENV{LD_LIBRARY_PATH}) set(CMAKE_INSTALL_PREFIX ${PROJECT_SOURCE_DIR}) set(INCLUDE_DIR ${PROJECT_SOURCE_DIR}/include) set(BIN_DIR ${PROJECT_SOURCE_DIR}/bin) -set(LIB_DIR ${PROJECT_SOURCE_DIR}/lib) set(EXECUTABLE_OUTPUT_PATH ${BIN_DIR}) # Set compiler flags diff --git a/README.md b/README.md index 66ca352..73ef0fd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,11 @@ -# smart-home-firewall -Profile-based, multi-layer Smart Home firewall, based on NFTables & NFQueue, supporting device interactions. +# Supervising Smart Home Device Interactions: A Profile-Based Firewall Approach -Research accepted at [IFIP Networking 2024](https://networking.ifip.org/2024/). +#### Author: François De Keersmaeker (@fdekeers) + +Profile-based, multi-layer Smart Home firewall, based on NFTables & NFQueue, supporting device interactions. + +Research accepted at [IFIP Networking 2024](https://networking.ifip.org/2024). +Read the author's preprint version [here](http://hdl.handle.net/2078.1/288456). ## Local compilation -- GitLab