diff options
author | Determinant <[email protected]> | 2018-07-23 19:47:41 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-23 19:47:41 -0400 |
commit | bfe0096cef3e7827afc2c8a1718255917e3e7937 (patch) | |
tree | ed60420fcd52a72f007e1497de3db2beee193800 | |
parent | 70995d2a4528404a9e4be7b924ace8e49b9061f2 (diff) |
...
-rw-r--r-- | README.rst | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -12,16 +12,16 @@ Features relies on libevent and libcrypo (OpenSSL, for SHA256 purpose). - Clarity. With moderate use of C++ template and new features, the vast - majority of the code is self-documented. + majority of the code is self-documenting. - Layered design. You can use network abstraction from the lowest socket connection level to the highest P2P network level. -- Performance. The implementation strives to incur very little in processing +- Performance. The implementation strives to incur very little overhead in processing network I/O, and avoid unnecessary memory copies thanks to the move semantics. -- Utilities. The libray also provies with some useful gadgets, such as command - line parser, libevent abstraction, etc. +- Utilities. The library also provides with some useful gadgets, such as + command-line parser, libevent abstraction, etc. Dependencies ------------ @@ -31,8 +31,8 @@ Dependencies - libevent - libcrypto -Example -------- +Example (MsgNetwork layer) +-------------------------- .. code-block:: cpp |