You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1) Changes made in CMakeLists.txt, operation.h, utilities.h so that the implementation automatically select the appropriate <filesystem> / <experimental/filesystem> 2) Added <PORT> as second argument. 3) Removed global mutexes and added sharedResources module instead. 4) Removed the unncessary sleep function in main(). 5) Modularised httpPost function. 6) Added isValidPort()
Copy file name to clipboardExpand all lines: README.md
-19Lines changed: 0 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,25 +59,6 @@ cmake -DTARGET_ARCH=x64 ../
59
59
cmake -DTARGET_ARCH=x86 ../
60
60
```
61
61
62
-
### For C++17 supporting compilers
63
-
Starting with [C++17 compatible compilers](https://en.cppreference.com/w/cpp/compiler_support/17), the [std::filesystem](https://en.cppreference.com/w/cpp/filesystem) is part of the standard library. If you are using C++17 or later, you may **NOT** need to link stdc++fs because the standard library will include filesystem support by default so in that case just remove the below in CMAKELists.txt file i.e.
Also make sure to replace the replace the below lines in "*src/utilities.cpp*" and "*src/operations.cpp*"
69
-
```
70
-
#include <experimental/filesystem>
71
-
namespace fs = std::experimental::filesystem;
72
-
```
73
-
with
74
-
```
75
-
#include <filesystem>
76
-
namespace fs = std::filesystem;
77
-
```
78
-
79
-
For other issues, please open thread in issue section.
80
-
81
62
### Disclaimer
82
63
This application is designed for personal and administrative use. It is not intended for unauthorized access, data manipulation, or any other malicious activity. Any use of this software for illegal purposes is strictly prohibited. You can use this service in offensive security scenarios on you own machine/network ONLY.
83
64
The author disclaims all liability for any misuse or damage caused by the application. Users are solely responsible for their actions and the consequences thereof.
0 commit comments