X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=README;h=00c06ea43d9286bd0d36a161dac971e4cb1a47dc;hp=637c2fb2d96fb94a12f97496c0a3b50ed3bb9153;hb=56f3994d74dbc36d10bfa83b50b016bf269ac563;hpb=d8d80698b8ecb171e9048476c046ea0f8266d601 diff --git a/README b/README index 637c2fb..00c06ea 100644 --- a/README +++ b/README @@ -1,3 +1,36 @@ -libt2n (talk2neighbor) is a C++ IPC (inter process communication) library. +------------------------------------------------------------------- +libt2n version 0.4 +------------------------------------------------------------------- +libt2n (talk2neighbor) is a C++ IPC (inter process communication) library +with an additional code generator (libt2n-codegen). -The full documentation is generated by doxygen in the doc directory. +Before inventing our own IPC library, we checked a lot of other IPC frameworks +like CORBA, D-BUS and ICE. But they weren't easy to use and did not allow +passing complex C++ objects like vectors, maps and your own classes. + +Communication between client and server is currently done using +Unix domain sockets (named pipes) or TCP. But the library is designed +transport-independent, so it can be expanded to +shared memory or other mechanisms. + +Serializing all the complex objects is done with Boost serialization. +The complete manual is generated by doxygen in the doc directory. + +Changes from 0.3 +---------------- +* Add Client-Wrappers, see examples-codegen/example1-client-wrapper how to + use them +* API-incompatible change: + command_client now takes a client_connection pointer instead of a reference +* Fix build of documentation for "out of tree" builds +* Fixed a bug with nested namespaces +* Fixed a bug with incomplete writes (Robert Huitl) +* Provide access to buffer/block sizes of socket handler +* Updated documentation + +You'll find the newest version of libt2n at: +http://www.intra2net.com/de/produkte/opensource/libt2n/ + +------------------------------------------------------------------- +www.intra2net.com 2006-2008 Intra2net AG +-------------------------------------------------------------------