Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 516 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 516 Bytes

C++ Socket library

Cross-platform socket library for making sockets usage easy and clean. Only supports TCP and only the most important methods.

Building libsocket

$ mkdir build
$ cd build
$ cmake ..
$ make
$ make install

How to use?

Compiling:

  • link against libsocket.a
  • On Windows, link against ws2_32.lib and iphlpapi.lib as well

See the tests to learn how to use.

TODO

  • Improve README file
  • Document the source files
  • Add more methods to the classes
  • Add UDP support