aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 52ded3d..8499a90 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -876,6 +876,26 @@ namespace OpenSim
876 } 876 }
877 } 877 }
878 878
879 /// <summary>
880 /// handler to supply serving http://domainname:port/robots.txt
881 /// </summary>
882 public class SimRobotsHandler : BaseStreamHandler
883 {
884 public SimRobotsHandler() : base("GET", "/robots.txt", "SimRobots.txt", "Simulator Robots.txt") {}
885
886 protected override byte[] ProcessRequest(string path, Stream request,
887 IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
888 {
889 string robots = "# go away\nUser-agent: *\nDisallow: /\n";
890 return Util.UTF8.GetBytes(robots);
891 }
892
893 public override string ContentType
894 {
895 get { return "text/plain"; }
896 }
897 }
898
879 #endregion 899 #endregion
880 900
881 /// <summary> 901 /// <summary>