diff options
author | mingchen | 2007-11-03 17:49:45 +0000 |
---|---|---|
committer | mingchen | 2007-11-03 17:49:45 +0000 |
commit | b51a900bebe914650c1c7db7b77f74c5ac107f6d (patch) | |
tree | b93c86b110df48df3c17823358fc2e2185319e0b /OpenSim/Framework/ConfigurationOption.cs | |
parent | * Removed unused UDPServerBase (diff) | |
download | opensim-SC_OLD-b51a900bebe914650c1c7db7b77f74c5ac107f6d.zip opensim-SC_OLD-b51a900bebe914650c1c7db7b77f74c5ac107f6d.tar.gz opensim-SC_OLD-b51a900bebe914650c1c7db7b77f74c5ac107f6d.tar.bz2 opensim-SC_OLD-b51a900bebe914650c1c7db7b77f74c5ac107f6d.tar.xz |
*Master Avatar can be specified by a previous UUID in either grid mode or standalone mode by specifying a master_avatar_uuid attribute in the place of master_avatar_xxxx_name and master_avatar_password.You will not be asked for the name and password if a valid UUID is specified.
Diffstat (limited to 'OpenSim/Framework/ConfigurationOption.cs')
-rw-r--r-- | OpenSim/Framework/ConfigurationOption.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/ConfigurationOption.cs b/OpenSim/Framework/ConfigurationOption.cs index ec39d3d..b83be5e 100644 --- a/OpenSim/Framework/ConfigurationOption.cs +++ b/OpenSim/Framework/ConfigurationOption.cs | |||
@@ -30,6 +30,9 @@ namespace OpenSim.Framework | |||
30 | { | 30 | { |
31 | public class ConfigurationOption | 31 | public class ConfigurationOption |
32 | { | 32 | { |
33 | |||
34 | public delegate bool ConfigurationOptionShouldBeAsked(string configuration_key); | ||
35 | |||
33 | public enum ConfigurationTypes | 36 | public enum ConfigurationTypes |
34 | { | 37 | { |
35 | TYPE_STRING, | 38 | TYPE_STRING, |
@@ -56,5 +59,6 @@ namespace OpenSim.Framework | |||
56 | 59 | ||
57 | public ConfigurationTypes configurationType = ConfigurationTypes.TYPE_STRING; | 60 | public ConfigurationTypes configurationType = ConfigurationTypes.TYPE_STRING; |
58 | public bool configurationUseDefaultNoPrompt = false; | 61 | public bool configurationUseDefaultNoPrompt = false; |
62 | public ConfigurationOptionShouldBeAsked shouldIBeAsked; //Should I be asked now? Based on previous answers | ||
59 | } | 63 | } |
60 | } \ No newline at end of file | 64 | } \ No newline at end of file |