Multiplexing server

This commit is contained in:
2024-04-26 00:21:46 +05:30
parent a52e38455c
commit d1b168007e
3 changed files with 331 additions and 2 deletions

View File

@@ -15,9 +15,13 @@ set(CMAKE_C_STANDARD 17)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_C_EXTENSIONS OFF)
add_subdirectory("multiplexing")
# Add source to this project's executable.
add_executable (server "server.c")
add_executable (client "client.c")
add_executable (server "server.c" )
add_executable (client "client.c" )