ndhc/ifchd/CMakeLists.txt
Nicholas J. Kain 2bf7306bb9 Add some more syscalls to the ndhc permit filter. Netlink sockets were
broken before because of too-strict filters.

Move setup_signals under the seccomp filter to give it more testing coverage.

Make the UDP datagram length check much more strict.  If the read buffer
does not match up with the header lengths exactly, it is discarded.

Print a warning to syslog/stdout when ifchd execute_buffer() returns an
error.

Fix a regression introduced in ifchd that would cause the epoll handler to
spin when a client connection closed.
2012-07-20 18:48:26 -04:00

9 lines
156 B
CMake

project (ifchd)
cmake_minimum_required (VERSION 2.6)
file(GLOB IFCHD_SRCS "*.c")
add_executable(ifchd ${IFCHD_SRCS})
target_link_libraries(ifchd ncmlib)