mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 06:57:45 +00:00
NetworkServer: Add a new NetworkServer service
This service is responsible for loading network configuration from a /etc/Network.ini config file. It sets up static IP address + mask or starts DHCPClient depending on configuration.
This commit is contained in:
parent
e14d4482a1
commit
ddd4547e13
5 changed files with 109 additions and 6 deletions
12
Userland/Services/NetworkServer/CMakeLists.txt
Normal file
12
Userland/Services/NetworkServer/CMakeLists.txt
Normal file
|
@ -0,0 +1,12 @@
|
|||
serenity_component(
|
||||
NetworkServer
|
||||
REQUIRED
|
||||
TARGETS NetworkServer
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(NetworkServer)
|
||||
target_link_libraries(NetworkServer LibCore LibConfig LibMain)
|
Loading…
Add table
Add a link
Reference in a new issue