From b16abc8166c29585cb76cc55c3bdd76e5833cb4f Mon Sep 17 00:00:00 2001
From: Melanie Thielker
Date: Thu, 5 Jan 2017 19:07:37 +0000
Subject: Massive tab and trailing space cleanup
---
.../Servers/HttpServer/Interfaces/IHttpServer.cs | 34 +++++++++++-----------
1 file changed, 17 insertions(+), 17 deletions(-)
(limited to 'OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs')
diff --git a/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs
index d162bc1..3a04074 100644
--- a/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs
@@ -45,26 +45,26 @@ namespace OpenSim.Framework.Servers.HttpServer
// // the handlers - it is NOT required to be an actual agent header
// // value.
// bool AddAgentHandler(string agent, IHttpAgentHandler handler);
-
+
///
/// Add a handler for an HTTP request.
///
///
- /// This handler can actually be invoked either as
- ///
- /// http://:/?method=
- ///
+ /// This handler can actually be invoked either as
+ ///
+ /// http://:/?method=
+ ///
/// or
- ///
+ ///
/// http://:
- ///
+ ///
/// if the method name starts with a slash. For example, AddHTTPHandler("/object/", ...) on a standalone region
/// server will register a handler that can be invoked with either
- ///
+ ///
/// http://localhost:9000/?method=/object/
- ///
+ ///
/// or
- ///
+ ///
/// http://localhost:9000/object/
///
/// In addition, the handler invoked by the HTTP server for any request is the one when best matches the request
@@ -87,7 +87,7 @@ namespace OpenSim.Framework.Servers.HttpServer
/// handle the LLSD response
///
bool AddLLSDHandler(string path, LLSDMethod handler);
-
+
///
/// Add a stream handler to the http server. If the handler already exists, then nothing happens.
///
@@ -98,7 +98,7 @@ namespace OpenSim.Framework.Servers.HttpServer
bool AddXmlRPCHandler(string method, XmlRpcMethod handler, bool keepAlive);
bool AddJsonRPCHandler(string method, JsonRPCMethod handler);
-
+
///
/// Websocket HTTP server handlers.
///
@@ -108,7 +108,7 @@ namespace OpenSim.Framework.Servers.HttpServer
void RemoveWebSocketHandler(string servicepath);
-
+
///
/// Gets the XML RPC handler for given method name
///
@@ -125,7 +125,7 @@ namespace OpenSim.Framework.Servers.HttpServer
// ///
// ///
// bool RemoveAgentHandler(string agent, IHttpAgentHandler handler);
-
+
///
/// Remove an HTTP handler
///
@@ -134,15 +134,15 @@ namespace OpenSim.Framework.Servers.HttpServer
void RemoveHTTPHandler(string httpMethod, string path);
void RemovePollServiceHTTPHandler(string httpMethod, string path);
-
+
bool RemoveLLSDHandler(string path, LLSDMethod handler);
-
+
void RemoveStreamHandler(string httpMethod, string path);
void RemoveXmlRPCHandler(string method);
void RemoveJsonRPCHandler(string method);
-
+
string GetHTTP404(string host);
string GetHTTP500();
--
cgit v1.1