Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 630 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 630 Bytes

Build Status Sockets.cpp is a cross-platform socket library written in C++.

Sockets only supports synchronous TCP/UDP sockets. Asynchronous network programming is better handled by other libraries and are therefore outside the scope of this project. Additional protocols maybe supported in the future.

Requirements

  • An operating system
  • A C++14 capable compiler
  • CMake

Compiling

  1. Configure using CMake
$ mkdir build
$ cd build
$ cmake -G "Unix Makefiles" ..
  1. Run make
$ make