Changeset 1067
- Timestamp:
- 06/05/08 02:37:12 (3 months ago)
- Files:
-
- trunk/mango/net/util/AbstractServer.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/mango/net/util/AbstractServer.d
r1047 r1067 51 51 upon the underlying O/S and hardware. 52 52 53 Parameter 'backlog' specifies the max number of "simultaneous"53 Parameter 'backlog' specifies the max number of queued 54 54 connection requests to be handled by an underlying socket 55 55 implementation. … … 62 62 assert (logger); 63 63 assert (backlog >= 0); 64 assert (threads > 0 && threads < 256);64 assert (threads > 0 && threads < 400); 65 65 } 66 66 body
