Browse Source

added support for binrpc library

Vladimir Marek 18 years ago
parent
commit
18e13af86c
3 changed files with 12 additions and 2 deletions
  1. 1 1
      lib/Makefile
  2. 1 1
      lib/Makefile.ser
  3. 10 0
      lib/README

+ 1 - 1
lib/Makefile

@@ -11,7 +11,7 @@ export LIBS
 export DEFS
 export DEFS
 export INCLUDES
 export INCLUDES
 
 
-SUBDIRS=cds xcap presence
+SUBDIRS=binrpc cds xcap presence
 
 
 .PHONY: subdirs $(SUBDIRS) 
 .PHONY: subdirs $(SUBDIRS) 
 
 

+ 1 - 1
lib/Makefile.ser

@@ -30,7 +30,7 @@ export LIBS
 export CFLAGS
 export CFLAGS
 export DEFS
 export DEFS
 
 
-SUBDIRS=cds xcap presence
+SUBDIRS=binrpc cds xcap presence
 
 
 .PHONY: subdirs $(SUBDIRS) 
 .PHONY: subdirs $(SUBDIRS) 
 
 

+ 10 - 0
lib/README

@@ -1,3 +1,13 @@
+Standalone libraries:
+---------------------
+
+binrpc - A library that provides common interface for different communication
+         methods (UNIX sockets, TCP, UDP) using binary RPC as a transport form 
+         of data. The interface is documented directly in binrpc_api.h file and 
+         can by generated into HTML form by using Doxygen. There is no 
+         difference between compilation "with" or "without" SER (see compilation
+         section below).
+
 Libraries common to modules:
 Libraries common to modules:
 ---------------------------
 ---------------------------