From bf78e230ad4736da9fce6e0b4d1655affb8f466b Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sun, 17 Jul 2011 23:31:29 +0200 Subject: GENERIC socket type and COMMAND flag added GENERIC allows to use 0MQ as a dumb networking framework. It provides user with connect/disconnect notifications. Also, each inbound message is labeled by ID of the connection it originated from. Outbound messages should be labeled by the ID of the connection to send them to. To distinguish connect/disconnect notifications from common messages, COMMAND flag was introduced. Signed-off-by: Martin Sustrik --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 5049ad8..971ebeb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,6 +23,7 @@ libzmq_la_SOURCES = \ err.hpp \ fd.hpp \ fq.hpp \ + generic.hpp \ io_object.hpp \ io_thread.hpp \ ip.hpp \ @@ -88,6 +89,7 @@ libzmq_la_SOURCES = \ epoll.cpp \ err.cpp \ fq.cpp \ + generic.cpp \ io_object.cpp \ io_thread.cpp \ ip.cpp \ -- cgit v1.2.3