* bizarrely, two reports that that last commit broke script engine startup (!) on linux - reverting until we can investigate further.

0.6.5-rc1
lbsa71 2009-04-16 18:35:23 +00:00
parent ec219f025a
commit 1d12274850
6 changed files with 5 additions and 15 deletions

View File

@ -33,7 +33,7 @@ namespace OpenSim.Framework
/// <summary> /// <summary>
/// AssetConfig -- For Asset Server Configuration /// AssetConfig -- For Asset Server Configuration
/// </summary> /// </summary>
public class AssetConfig:ConfigBase public class AssetConfig
{ {
public const uint DefaultHttpPort = 8003; public const uint DefaultHttpPort = 8003;

View File

@ -1,10 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Framework
{
public abstract class ConfigBase
{
}
}

View File

@ -29,7 +29,7 @@ using System;
namespace OpenSim.Framework namespace OpenSim.Framework
{ {
public class GridConfig:ConfigBase public class GridConfig
{ {
public static uint DefaultHttpPort = 8001; public static uint DefaultHttpPort = 8001;

View File

@ -32,7 +32,7 @@ namespace OpenSim.Framework
/// <summary> /// <summary>
/// Defines and handles inventory grid server configuration /// Defines and handles inventory grid server configuration
/// </summary> /// </summary>
public class InventoryConfig:ConfigBase public class InventoryConfig
{ {
public static uint DefaultHttpPort = 8004; public static uint DefaultHttpPort = 8004;

View File

@ -32,7 +32,7 @@ namespace OpenSim.Framework
/// <summary> /// <summary>
/// Message Server Config - Configuration of the Message Server /// Message Server Config - Configuration of the Message Server
/// </summary> /// </summary>
public class MessageServerConfig:ConfigBase public class MessageServerConfig
{ {
public static uint DefaultHttpPort = 8006; public static uint DefaultHttpPort = 8006;
public static bool DefaultHttpSSL = false; public static bool DefaultHttpSSL = false;

View File

@ -33,7 +33,7 @@ namespace OpenSim.Framework
/// <summary> /// <summary>
/// UserConfig -- For User Server Configuration /// UserConfig -- For User Server Configuration
/// </summary> /// </summary>
public class UserConfig:ConfigBase public class UserConfig
{ {
public static uint DefaultHttpPort = 8002; public static uint DefaultHttpPort = 8002;
public static bool DefaultHttpSSL = false; public static bool DefaultHttpSSL = false;