RoadRunner -- Industrial Strength BEEP Toolkit        http://rr.codefactory.se/
===============================================================================

RoadRunner is a complete application toolkit library implementing the BEEP 
(Blocks Extensible Exchange Protocol) for use in developing network applications. 
Apart from BEEP, RoadRunner also consists of a useful set of profiles, readily 
available and usable in applications.

Requirements
============

* GLib > 2.0.1.     GLib can be found at ftp://ftp.gimp.org/
* libxml2 > 2.4.16. libxml can be found at http://xmlsoft.org/


Debug/log output
================

Debug levels:

  $ export RR_DEBUG=<level>

  where <level> is one of the following: 0, 1, 2, 3 or 4. Debug level 0 will
  disable all debug messages and 4 will print all available debug information.

Net debug info:
  
  $ export RR_DEBUG=<keyword>

  Available keywords:

   * "NET":     logs all data read or written from/to the connection.
   * "NET_IN":  logs all data read from the connection.
   * "NET_OUT": logs all data written to the connection.
 
Combinations are also allowed:

$ export RR_DEBUG="2:NET"

Debug output can be directed to files instead of stderr like this:

$ export RR_DEBUG="2:FILE=foo"

and to redirect only the network dump:

$ export RR_DEBUG="2:FILE_NET=bar"



RoadRunner -- http://rr.codefactory.se/