Metamod module for serve static files for fastdl.
Install as metamod plugins. Example cstrike\addons\httpd\httpd.dll
Create a configuration file with paths listed: cstrike\addons\httpd\httpd.cfg
./cstrike
./cstrike_addon
./cstrike_downloads
Searching for files in directories depends on their order in the settings
Set sv_downloadurl "http://localhost/"
or your public ip address for working fastdl.
WARNING!!!
The plugin was developed only for local play. public use is fraught with vulnerabilities and server hijacking. Directories and files specified in the config will be available without checking access rights!!!
There are several software requirements for building HTTPD:
Visual Studio 2015 (C++14 standard) and later
git >= 1.8.5 cmake >= 3.10 GCC >= 4.9.2 (Optional) ICC >= 15.0.1 20141023 (Optional) LLVM (Clang) >= 6.0 (Optional)
Use Visual Studio
to build, open httpd.sln
and just select from the solution configurations list Release
or Debug
and platform x86
- Optional options using
build.sh --compiler=[gcc] --jobs=[N] -D[option]=[ON or OFF]
(without square brackets)
-c=|--compiler=[icc|gcc|clang] - Select preferred C/C++ compiler to build -j=|--jobs=[N] - Specifies the number of jobs (commands) to run simultaneously (For faster building) Definitions (-D) DEBUG - Enables debugging mode USE_STATIC_LIBSTDC - Enables static linking library libstdc++
- ICC
./build.sh --compiler=intel
- LLVM (Clang)
./build.sh --compiler=clang
- GCC
./build.sh --compiler=gcc
Click to expand
-
Installing required packages
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install -y gcc-multilib g++-multilib sudo apt-get install -y build-essential sudo apt-get install -y libc6-dev libc6-dev-i386
-
Select the preferred C/C++ Compiler installation
1) sudo apt-get install -y gcc g++ 2) sudo apt-get install -y clang