zz198808 / cnetpp

a ligthweight asynchronized network library focused on backend c++ development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is cnetpp?

a ligthweight asynchronous network library focused on backend c++ development

Dependancies:

  • linux2.6 or higher (will support multi-platform in the future)
  • gcc4.9.0 or higher

Includes:

  • a simple json parser, named csonpp
  • a simple thread framework
  • the asynchronous Tcp network framework based on epoll(or select or poll)
  • the asynchronous Http server and client module based on our Tcp network framework

Install:

  • cd $CNETPP_ROOT_PATH
  • mkdir build/
  • cd build/
  • cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. (modify the value of option CMAKE_INSTALL_PREFIX if you want to change the install directory)
  • make
  • sudo make install

About

a ligthweight asynchronized network library focused on backend c++ development

License:MIT License


Languages

Language:C++ 99.5%Language:CMake 0.5%