Networking TS: first impression and questions;

This page summarizes the projects mentioned and recommended in the original post on /r/cpp

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • networking-ts-impl

    An implementation of the C++ Networking Technical Specification

    Hi, I am an experienced C++ programmers, but a beginner by network programming. I plan to develop a C++ network application, so decided to try the Networking TS. I have been trying to figure out how to use it for 3 days, and I am starting to understand things a little. I first tried using the std::experimental::net that comes with gcc in Ubuntu 20.04, but it turned out to be incomplete. In order to make the code work, I had to use this github repository instead: https://github.com/chriskohlhoff/networking-ts-impl. The last commit was 2 years ago. Is it the recommended implementation? I tried to teach myself how to use it by following the boost::asio tutorial. It was a bit difficult because of the differences between the two libraries, but I managed to translate the asio tutorial samples without using any boost library. I was surprised that I had to pass the port number as a string to net::ip::tcp::resolver::resolve. Wouldn't it be much better to use an int override, both in terms of implementation and usage of this function? I really don't like having to convert my port number to a string. Is there a way to do it without the conversion? I also dislike the enable_shared_from_this trick used in the boost::asio examples. It looks like a dirty anti-pattern. I feel it is possible to do things much more cleanly without it. I tried to implement an echo server differently: the server keeps a std::list, and the completion handlers are members of the server class instead of the connection class. They take an iterator to the list as parameter, and can cleanly erase the connection from the list. I feel it is much cleaner and simpler than sending connections from lambda to lambda, and using tricks to let them commit suicide by themselves. Is there any advantage of enable_shared_from_this compared to what I do? The scope of boost::asio is wider than networking, and I am surprised that C++ seems to be restricting it to networking. I understand that standardizing a library is a lot of work, and taking care of networking first should‍ have priority. But why not call it std::asio instead, and leave the possibility to add asynchronous file operation to it later?

  • Crow

    A Fast and Easy to use microframework for the web. (by CrowCpp)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • cpp-httplib

    A C++ header-only HTTP/HTTPS server and client library

  • llfio

    P1031 low level file i/o and filesystem library for the C++ standard

    Since that post, I have the reference implementation library very nearly passing its test suite https://github.com/ned14/llfio/pull/89. Once it's done I'll start very slowly writing its proposal paper for WG21 SG4. Should land before this summer.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts