36 |
kaklik |
1 |
connChoices=(
|
|
|
2 |
{'name':'automatic',
|
|
|
3 |
'rate':{'min':0, 'max':5000, 'def': 0},
|
|
|
4 |
'conn':{'min':0, 'max':100, 'def': 0},
|
|
|
5 |
'automatic':1},
|
|
|
6 |
{'name':'unlimited',
|
|
|
7 |
'rate':{'min':0, 'max':5000, 'def': 0, 'div': 50},
|
|
|
8 |
'conn':{'min':4, 'max':100, 'def': 4}},
|
|
|
9 |
{'name':'dialup/isdn',
|
|
|
10 |
'rate':{'min':3, 'max': 8, 'def': 5},
|
|
|
11 |
'conn':{'min':2, 'max': 3, 'def': 2},
|
|
|
12 |
'initiate': 12},
|
|
|
13 |
{'name':'dsl/cable slow',
|
|
|
14 |
'rate':{'min':10, 'max': 48, 'def': 13},
|
|
|
15 |
'conn':{'min':4, 'max': 20, 'def': 4}},
|
|
|
16 |
{'name':'dsl/cable fast',
|
|
|
17 |
'rate':{'min':20, 'max': 100, 'def': 40},
|
|
|
18 |
'conn':{'min':4, 'max': 30, 'def': 6}},
|
|
|
19 |
{'name':'T1',
|
|
|
20 |
'rate':{'min':100, 'max': 300, 'def':150},
|
|
|
21 |
'conn':{'min':4, 'max': 40, 'def':10}},
|
|
|
22 |
{'name':'T3+',
|
|
|
23 |
'rate':{'min':400, 'max':2000, 'def':500},
|
|
|
24 |
'conn':{'min':4, 'max':100, 'def':20}},
|
|
|
25 |
{'name':'seeder',
|
|
|
26 |
'rate':{'min':0, 'max':5000, 'def':0, 'div': 50},
|
|
|
27 |
'conn':{'min':1, 'max':100, 'def':1}},
|
|
|
28 |
{'name':'SUPER-SEED', 'super-seed':1}
|
|
|
29 |
)
|
|
|
30 |
|
|
|
31 |
connChoiceList = map(lambda x:x['name'], connChoices)
|