aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs
diff options
context:
space:
mode:
authorDiva Canto2011-05-08 16:51:41 -0700
committerDiva Canto2011-05-08 16:51:41 -0700
commit00f10c900ac9decd48f8508e96d36f53e933ff3c (patch)
treeade93c69f3dcdeccdf96f6ecb9e901bcc2df7ae2 /OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs
parentFix content-type to be application/x-www-form-urlencoded (diff)
parentAlso compress the actual fatpacks (diff)
downloadopensim-SC-00f10c900ac9decd48f8508e96d36f53e933ff3c.zip
opensim-SC-00f10c900ac9decd48f8508e96d36f53e933ff3c.tar.gz
opensim-SC-00f10c900ac9decd48f8508e96d36f53e933ff3c.tar.bz2
opensim-SC-00f10c900ac9decd48f8508e96d36f53e933ff3c.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs')
-rw-r--r--OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs b/OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs
index 42d8eca..0da08f8 100644
--- a/OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs
+++ b/OpenSim/Server/Handlers/Simulation/SimulationServiceInConnector.cs
@@ -50,6 +50,7 @@ namespace OpenSim.Server.Handlers.Simulation
50 // are pure binary and shoehorning that into a string with UTF-8 50 // are pure binary and shoehorning that into a string with UTF-8
51 // encoding breaks it 51 // encoding breaks it
52 server.AddStreamHandler(new AgentPostHandler(m_LocalSimulationService)); 52 server.AddStreamHandler(new AgentPostHandler(m_LocalSimulationService));
53 server.AddStreamHandler(new AgentPutHandler(m_LocalSimulationService));
53 server.AddHTTPHandler("/agent/", new AgentHandler(m_LocalSimulationService).Handler); 54 server.AddHTTPHandler("/agent/", new AgentHandler(m_LocalSimulationService).Handler);
54 server.AddHTTPHandler("/object/", new ObjectHandler(m_LocalSimulationService).Handler); 55 server.AddHTTPHandler("/object/", new ObjectHandler(m_LocalSimulationService).Handler);
55 } 56 }