-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
43 lines (33 loc) · 1.02 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Dissent: Accountable Group Anonymity
Copyright (C) 2010 Yale University
Released under the GNU General Public License version 3:
see the file COPYING for details.
Filename: settings.py
Description: Global settings constants for anon protocol.
Author: Henry Corrigan-Gibbs
"""
"""
FOR EMULAB TESTBED
"""
''' Your emulab username '''
EMULAB_USERNAME='FAKEUSER'
''' The address of your emulab network. This will be appended
to each node address in your address to create the full node
address. '''
EMULAB_SUFFIX='.EXPERIMENT_NAME.PROJECT_NAME.emulab.net'
''' The dir where you have copied all of the implementation files '''
EMULAB_ROOT_DIR='/proj/PROJECT_NAME/exp/EXPERIMENT_NAME/DIR_TO_FILES'
"""
Directories for storing logs and data. These names are RELATIVE
to the EMULAB_ROOT_DIR you specify above. Make sure that these
directories exist before you try to run the implementation.
"""
DATA_DIR='data'
LOGS_DIR='logs'
"""
YALE INTERNAL USE ONLY
(For Yale's Zoo lab.)
"""
ZOO_USERNAME='FAKEUSER'
ZOO_SUBDIR='DIR_TO_FILES'