Skip to content

Commit

Permalink
Отлаживаем работу модуля работы с IP-адресами
Browse files Browse the repository at this point in the history
  • Loading branch information
anyks committed May 9, 2024
1 parent 36097e5 commit ebeee15
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/sys/os.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
* Стандартные модули
*/
#include <queue>
#include <linux/sysctl.h>
#endif

/**
Expand All @@ -36,7 +37,6 @@
*/
#include <pwd.h>
#include <grp.h>
#include <sys/sysctl.h>
#include <sys/resource.h>
/**
* Методы только для OS Windows
Expand All @@ -48,6 +48,16 @@
#include <wchar.h>
#endif

/**
* Если операционной системой является MacOS X или FreeBSD
*/
#if defined(__APPLE__) || defined(__MACH__) || defined(__FreeBSD__)
/**
* Стандартные модули
*/
#include <sys/sysctl.h>
#endif

// Подключаем заголовочный файл
#include <sys/os.hpp>

Expand Down

0 comments on commit ebeee15

Please sign in to comment.