Changes between Version 4 and Version 5 of projects/synapse
- Timestamp:
- 04/15/10 15:20:51 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
projects/synapse
v4 v5 17 17 * Events can be handled by multiple threads if desired (max-threads is adjustable per session and per module) 18 18 19 More documentation to follow soon. 19 More documentation to follow soon. Module documentation in http://open.syn3.nl/syn3/trac/default/browser/trunk/projects/synapse/modules/docs/html 20 21 == Download == 22 23 Download: 24 {{{ 25 psy@r3m0t3h0st ~/test $ svn co --username=anonymous --password=anonymous http://open.syn3.nl/syn3/svndav/default/trunk/projects/synapse 26 ... 27 Checked out revision 311. 28 }}}} 20 29 21 30 31 Configure/compile: 32 {{{ 33 psy@r3m0t3h0st ~/test $ cd synapse/ 34 psy@r3m0t3h0st ~/test/synapse $ cmake . 35 ... 36 psy@r3m0t3h0st ~/test/synapse $ make 37 38 }}} 39 40 Run a module: 41 {{{ 42 psy@r3m0t3h0st ~/test/synapse $ ./synapse modules/test.module/libtest.so 43 ... 44 }}} 45