Changeset 1067

Show
Ignore:
Timestamp:
06/05/08 02:37:12 (3 months ago)
Author:
kris
Message:

upped the max threads

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/mango/net/util/AbstractServer.d

    r1047 r1067  
    5151                upon the underlying O/S and hardware. 
    5252 
    53                 Parameter 'backlog' specifies the max number of"simultaneous"  
     53                Parameter 'backlog' specifies the max number of queued 
    5454                connection requests to be handled by an underlying socket  
    5555                implementation. 
     
    6262           assert (logger); 
    6363           assert (backlog >= 0); 
    64            assert (threads > 0 && threads < 256); 
     64           assert (threads > 0 && threads < 400); 
    6565           } 
    6666        body