Changeset 578 for trunk/ithildin/doc
- Timestamp:
- 08/21/05 06:37:53 (7 years ago)
- Location:
- trunk/ithildin/doc
- Files:
-
- 3 edited
-
conf/ithildin.conf (modified) (1 diff)
-
conf/proxyscan.conf (modified) (2 diffs)
-
style.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ithildin/doc/conf/ithildin.conf
r490 r578 45 45 46 46 module log { // define a module's information 47 file "log.so"; // this is our module48 load "yes"; // load at boot-time (yes/no)47 file "log.so"; // this is our module 48 load "yes"; // load at boot-time (yes/no) 49 49 }; 50 50 51 51 module dns { 52 file "dns.so"; // non-blocking dns module53 load "no"; // will be loaded if necessary.54 data {55 $INCLUDE "dns.conf";56 };52 file "dns.so"; // non-blocking dns module 53 load "no"; // will be loaded if necessary. 54 data { 55 $INCLUDE "dns.conf"; 56 }; 57 57 }; 58 58 module ircd { 59 file "ircd.so";60 load "yes";61 export "yes"; // force symbol export.62 data {63 $INCLUDE "ircd/ircd.conf";64 };59 file "ircd.so"; 60 load "yes"; 61 export "yes"; // force symbol export. 62 data { 63 $INCLUDE "ircd/ircd.conf"; 64 }; 65 65 }; 66 66 -
trunk/ithildin/doc/conf/proxyscan.conf
r490 r578 6 6 ** 7 7 */ 8 bind "0.0.0.0";// address to bind to (default is inaddr_any)9 timeout 20;// time in seconds to wait for sockets to time-out10 expire 3600;// time in seconds to keep cached scan results11 cache 32768;// number of cache results to keep at most.12 data "/path/to/save/data"; // file in which saved statistical data lives8 bind "0.0.0.0"; // address to bind to (default is inaddr_any) 9 timeout 20; // time in seconds to wait for sockets to time-out 10 expire 3600; // time in seconds to keep cached scan results 11 cache 32768; // number of cache results to keep at most. 12 data "/path/to/save/data"; // file in which saved statistical data lives 13 13 14 14 /* … … 48 48 49 49 skip { 50 0.0.0.0/32; // inaddr_any50 0.0.0.0/32; // inaddr_any 51 51 127.0.0.0/8; // localhost 52 10.0.0.0/8; // internal networks52 10.0.0.0/8; // internal networks 53 53 172.16.0.0/12; 54 54 192.168.0.0/16; -
trunk/ithildin/doc/style.txt
r495 r578 85 85 * aligned whenever possible. */ 86 86 struct foo { 87 int bar;/* brief description of variable */88 struct baz abaz; /* a baz structure */89 longtypename avar; /* another variable.87 int bar; /* brief description of variable */ 88 struct baz abaz; /* a baz structure */ 89 longtypename avar; /* another variable. 90 90 91 91 LIST_ENTRY(foo) lp; /* a list entry. lists should be rolled with the 92 macros in queue.h unless there is a pressing reason93 not to do so. */92 macros in queue.h unless there is a pressing reason 93 not to do so. */ 94 94 }; 95 95
Note: See TracChangeset
for help on using the changeset viewer.
