From 38e8853e5761d09a7e8f580dd277d9b99b834696 Mon Sep 17 00:00:00 2001 From: Homer Horwitz Date: Sat, 1 Nov 2008 22:09:48 +0000 Subject: Megapatch that fixes/adds: friend offer/deny/accept, friendship termination, on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs. --- OpenSim/Framework/NetworkServersInfo.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'OpenSim/Framework/NetworkServersInfo.cs') diff --git a/OpenSim/Framework/NetworkServersInfo.cs b/OpenSim/Framework/NetworkServersInfo.cs index 9f3014d..49b8ef9 100644 --- a/OpenSim/Framework/NetworkServersInfo.cs +++ b/OpenSim/Framework/NetworkServersInfo.cs @@ -53,6 +53,7 @@ namespace OpenSim.Framework public string HttpSSLCN = ""; public uint httpSSLPort = 9001; + public string MessagingURL = String.Empty; public NetworkServersInfo() { @@ -102,6 +103,9 @@ namespace OpenSim.Framework "http://127.0.0.1:" + InventoryConfig.DefaultHttpPort.ToString()); secureInventoryServer = config.Configs["Network"].GetBoolean("secure_inventory_server", true); + + MessagingURL = config.Configs["Network"].GetString("messaging_server_url", + "http://127.0.0.1:" + MessageServerConfig.DefaultHttpPort); } } } -- cgit v1.1