summaryrefslogtreecommitdiffstats
path: root/libraries/cpp-netlib/README
diff options
context:
space:
mode:
author Andre Barboza <bmg.andre@gmail.com>2017-02-08 10:21:55 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-02-10 07:16:25 +0700
commit1b6cf4e2f15329eaf209049b2fb6ce1ab769c199 (patch)
tree99ba237cb31f2aa9e5e9090bccbef0fc68386fbb /libraries/cpp-netlib/README
parenteed5a688468aca47af41b696ff4e3153eeaf13ea (diff)
downloadslackbuilds-1b6cf4e2f15329eaf209049b2fb6ce1ab769c199.tar.gz
slackbuilds-1b6cf4e2f15329eaf209049b2fb6ce1ab769c199.tar.xz
libraries/cpp-netlib: Added (The C++ Network Library Project).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/cpp-netlib/README')
-rw-r--r--libraries/cpp-netlib/README20
1 files changed, 20 insertions, 0 deletions
diff --git a/libraries/cpp-netlib/README b/libraries/cpp-netlib/README
new file mode 100644
index 0000000000..2ec60fd340
--- /dev/null
+++ b/libraries/cpp-netlib/README
@@ -0,0 +1,20 @@
+cpp-netlib is a collection of network related routines/implementations
+geared towards providing a robust cross-platform networking library.
+cpp-netlib offers the following implementations:
+
+- Common Message Type:
+ A generic message type which can be used to
+ encapsulate and store message related information, used by all
+ network implementations as the primary means of data exchange.
+
+- Network protocol message parsers:
+ A collection of parsers which generate message objects from
+ strings.
+
+- Adapters and Wrappers:
+ A collection of Adapters and wrappers aimed towards making the
+ message type STL friendly.
+
+- Network protocol client and server implementations:
+ A collection of network protocol implementations that include
+ embeddable client and server types.