Registry / networking / sockpp

sockpp

JSON →
library1.0.0vcpkgunverified

Simple, modern, C++ socket library providing low-level C++ wrappers around Berkeley sockets with socket, acceptor, and connector classes.

vcpkg install sockpp
INSTALL
IMPORT
SIG · SOCKPP
S
sockpp
networkingcppv1.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

sockpp/socket.h
#include <sockpp/socket.h>

Minimal TCP client connection using sockpp

#include <sockpp/tcp_connector.h> #include <iostream> int main() { sockpp::tcp_connector conn; if (!conn.connect(sockpp::inet_address("localhost", 8080))) { std::cerr << "Connection failed\n"; return 1; } std::cout << "Connected!\n"; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
8
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

sockpp — pip install sockpp · libregistry