Changeset 578 for trunk/ithildin/doc


Ignore:
Timestamp:
08/21/05 06:37:53 (7 years ago)
Author:
wd
Message:

Expand tabs ('\t') to eight spaces.

Location:
trunk/ithildin/doc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ithildin/doc/conf/ithildin.conf

    r490 r578  
    4545 
    4646    module log { // define a module's information 
    47         file "log.so"; // this is our module 
    48         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) 
    4949    }; 
    5050 
    5151    module dns { 
    52         file "dns.so"; // non-blocking dns module 
    53         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        }; 
    5757    }; 
    5858    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        }; 
    6565    }; 
    6666 
  • trunk/ithildin/doc/conf/proxyscan.conf

    r490 r578  
    66** 
    77*/ 
    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-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 
     8bind        "0.0.0.0";        // address to bind to (default is inaddr_any) 
     9timeout        20;                // time in seconds to wait for sockets to time-out 
     10expire        3600;                // time in seconds to keep cached scan results 
     11cache        32768;                // number of cache results to keep at most. 
     12data        "/path/to/save/data"; // file in which saved statistical data lives 
    1313 
    1414/* 
     
    4848 
    4949skip { 
    50     0.0.0.0/32;     // inaddr_any 
     50    0.0.0.0/32;            // inaddr_any 
    5151    127.0.0.0/8;    // localhost 
    52     10.0.0.0/8;     // internal networks 
     52    10.0.0.0/8;            // internal networks 
    5353    172.16.0.0/12; 
    5454    192.168.0.0/16; 
  • trunk/ithildin/doc/style.txt

    r495 r578  
    8585 * aligned whenever possible. */ 
    8686struct 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. 
    9090 
    9191    LIST_ENTRY(foo) lp; /* a list entry.  lists should be rolled with the 
    92                            macros in queue.h unless there is a pressing reason 
    93                            not to do so. */ 
     92                           macros in queue.h unless there is a pressing reason 
     93                           not to do so. */ 
    9494}; 
    9595 
Note: See TracChangeset for help on using the changeset viewer.