Skip to content
This repository has been archived by the owner on Jan 13, 2019. It is now read-only.

foxcpp/wire

Repository files navigation

libwire

Project is not developed

I'm not using C++ anymore and have zero interest in libwire development. All current code in libwire is working as it should, so you can use it if you really want but consider using https://github.com/irisjyf/evpp if you need something production-ready.

Travis CI AppVeyor CI CodeCov Latest Release Issues License

C++ networking library. This repository contains implementation of platform-independent wrapper on top system TCP & UDP implementation.

Table of contents

Installation

Requirements

  • C++17 compatible compiler

    MSVC is not supported currently due to cryptic errors. If you know how to fix them - please, send PR.

  • (Optional) Google Test for tests (included as submodule)

  • (Optional) Doxygen for API documentation generation

$ git clone https://github.com/foxcpp/wire
$ cd wire
$ mkdir build; cd build
$ cmake .. -DCMAKE_BUILD_TYPE=Release
$ cmake --build .

Note 1 By default libwire will be built as a static library, if you want a shared library then you should add -DBUILD_SHARED_LIBS=ON flag.

Note 2 It's recommended to enable LTO in your compiler to allow cross-object inlining and stuff.

Usage

Build system configuration

If you use CMake and clone libwire as a submodule, you can just link it this way:

add_subdirectory(wire/)
target_link_libraries(your-exectuable libwire)

It will use CMake magic to configure include path and other stuff.

Alternatively, you can access system-installed version using find_package.

find_package(libwire REQUIRED)
target_link_libraries(your-executable libwire)

In code

Let's write a simple TCP server that echoes back \n-terminated strings.

First, include TCP listener header and another one for ipv4::any:

#include <libwire/tcp/listener.hpp>
#include <libwire/address.hpp>

Then... It's very short so it doesn't needs any commentary:

using namespace libwire;

tcp::listener listener({ipv4::any, 7});

while (true) {
    auto sock = listener.accept();
    auto str = sock.read_until<std::string>('\n');
    sock.write(str);
}

Examples

See examples/ directory for sources and documentation for detailed description.

Documentation

Maintained in Markdown format (for separate page) and as a docstrings in code (for reference). Documentation for lastest commit in master is availiable here. You can also build it locally by running make doc. Ouput will be placed in doxygen_output/ directory.

Note Undocumented public function which behavior is not obvious is A BUG. Report it!

Contributing

Here is some of the ways that you can contribute:

  • Submit a bug report. We love hearing about broken things, so that we can fix them.
  • Provide feedback. Even simple questions about how things work or why they were done a certain way carries value.
  • Test code. Checkout dev branch, compile it and start trying to break stuff! :-)
  • Write code. Check issues marked with help wanted tag.

See CODE_STYLE.md and CONTRIBUTING.md for more details.

License

Distributed under terms of the MIT license. It allows you to do anything with libwire as long as you don't remove any copyright notices. Also, there is no warranties about anything.

See LICENSE.md for details.

About

C++17 low-level networking library

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published