Get the most advanced networking library for C
Clone from GitHub and build from source
View on GitHubPre-compiled binaries for all platforms
Download BinariesComplete API reference and guides
Read Docsgit clone https://github.com/LoSkroefie/jvr-netstack.git
cd jvr-netstack
mkdir build
cd build
cmake ..
cmake --build .
# Try the simple HTTP GET example
./simple_http_get
# Or run the test suite
./test_core
// In your CMakeLists.txt
add_subdirectory(path/to/jvr-netstack)
target_link_libraries(myapp jvr_netstack)
Download from Win32OpenSSL
# Open PowerShell or CMD
git clone https://github.com/LoSkroefie/jvr-netstack.git
cd jvr-netstack
mkdir build
cd build
cmake ..
cmake --build . --config Release
target_link_libraries(myapp jvr_netstack ws2_32)
# Ubuntu/Debian
sudo apt-get update
sudo apt-get install build-essential cmake libssl-dev git
# Fedora/RHEL
sudo dnf install gcc cmake openssl-devel git
# Arch Linux
sudo pacman -S base-devel cmake openssl git
git clone https://github.com/LoSkroefie/jvr-netstack.git
cd jvr-netstack
mkdir build && cd build
cmake ..
make -j$(nproc)
# Optional: Install system-wide
sudo make install
./test_core
./simple_http_get
# Install Homebrew (if not already installed)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install dependencies
brew install cmake openssl git
git clone https://github.com/LoSkroefie/jvr-netstack.git
cd jvr-netstack
# Set OpenSSL path
export OPENSSL_ROOT_DIR=/usr/local/opt/openssl
mkdir build && cd build
cmake ..
make -j$(sysctl -n hw.ncpu)
export OPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl
cmake .. -DCMAKE_OSX_ARCHITECTURES=arm64
make -j$(sysctl -n hw.ncpu)
Release Date: January 2025
JVR NetStack is released under the MIT License.
Copyright (c) 2025 JVR Software
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.