ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Coro/myhttpd/config.pl.dist
(Generate patch)

Comparing cvsroot/Coro/myhttpd/config.pl.dist (file contents):
Revision 1.25 by root, Mon Dec 3 04:57:42 2001 UTC vs.
Revision 1.26 by root, Sat Feb 2 15:41:22 2002 UTC

1$MAX_CONNECTS = 1000; # maximum simult. connects 1$MAX_CONNECTS = 100; # maximum simult. connects
2$MAX_TRANSFERS = 15; # the maximum number of sim. file transfers 2$MAX_TRANSFERS_SMALL = 1; # the maximum number of sim. file transfers
3$MAX_TRANSFERS_LARGE = 1; # the maximum number of sim. file transfers
4$TRANSFER_SMALL = 1_000_000; # size of a "small" file
3 5
4$MAX_TRANSFERS_IP = 4; # maximum simult. connects per ip 6$MAX_TRANSFERS_IP = 4; # maximum simult. connects per ip
5$BLOCKTIME = 60*60*2; # block time 7$BLOCKTIME = 60*60*2; # block time
6 8
7$NO_SEGMENTED = 0; # allow segmented downloads? 9$NO_SEGMENTED = 0; # allow segmented downloads?
15$DB_HOME = "db"; # database home directory 17$DB_HOME = "db"; # database home directory
16 18
17$DOCROOT = "/usr/www/htdocs"; # document root 19$DOCROOT = "/usr/www/htdocs"; # document root
18 20
19$SERVER_HOST = "0.0.0.0"; # host to bind on 21$SERVER_HOST = "0.0.0.0"; # host to bind on
20$SERVER_PORT = 80; # port to listen on 22$SERVER_PORT = 88; # port to listen on
21 23
22$CMDSHELL_PORT = 7262; # open a command shell on this port 24$CMDSHELL_PORT = 7262; # open a command shell on this port
23 25
24$WAIT_INTERVAL = 60*4; 26$WAIT_INTERVAL = 1; # check for free slot this often
25$WAIT_BUFSIZE = 256; 27$WAIT_BUFSIZE = 5; # send this much data while waiting
26 28
27$BUFSIZE = 32*1024; # buffer size 29$BUFSIZE = 32*1024; # buffer size
28 30
29$AIO_PARALLEL = 1; # how many reader threads for i/o? 31$AIO_PARALLEL = 1; # how many reader threads for i/o?
30 32

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines