Changeset e5663e0 for configure


Ignore:
Timestamp:
2005-12-01T20:05:09Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
626b446
Parents:
7c2d798b
Message:

Disabling send flood protection, too many bugs (that were there from the
beginning) and too trigger-happy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r7c2d798b re5663e0  
    5555--strip=0/1     Disable/enable binary stripping         $strip
    5656
    57 --flood=0/1     Flood protection                        $flood
    5857--ipv6=0/1      IPv6 socket support                     $ipv6
    5958
     
    282281
    283282if [ "$flood" = 1 ]; then
    284         echo '#define FLOOD_SEND' >> config.h
     283        # echo '#define FLOOD_SEND' >> config.h
     284        echo 'Flood protection is disabled in this release because of too many bugs.' 2> /dev/stderr
     285        rm config.h
     286        rm Makefile.settings
     287        exit 1
    285288fi
    286289
     
    389392fi
    390393
    391 if [ "$flood" = "0" ]; then
    392         echo '  Flood protection disabled.';
    393 else
    394         echo '  Flood protection enabled.';
    395 fi
     394#if [ "$flood" = "0" ]; then
     395#       echo '  Flood protection disabled.';
     396#else
     397#       echo '  Flood protection enabled.';
     398#fi
    396399
    397400if [ -n "$protocols" ]; then
Note: See TracChangeset for help on using the changeset viewer.