aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
diff options
context:
space:
mode:
authorUbitUmarov2017-05-21 02:11:53 +0100
committerUbitUmarov2017-05-21 02:11:53 +0100
commita2c245607610bacdacae065ec01c854fedd9df36 (patch)
tree82397d3e068baed3579f83f1233a3bf7c4d1772d /OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
parent add a bit more protection for broken scripts like ingen-e3s-v1.33 (diff)
downloadopensim-SC-a2c245607610bacdacae065ec01c854fedd9df36.zip
opensim-SC-a2c245607610bacdacae065ec01c854fedd9df36.tar.gz
opensim-SC-a2c245607610bacdacae065ec01c854fedd9df36.tar.bz2
opensim-SC-a2c245607610bacdacae065ec01c854fedd9df36.tar.xz
remove LongPoll type and queues. Events should now have reduced latency also. About previus commit, it maybe a modified ingen-e3s-v1.33 script that is broken, and not the original version, can't tell
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
index 8ace7a9..7150aad 100644
--- a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
+++ b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
@@ -50,7 +50,7 @@ namespace OpenSim.Framework.Servers.HttpServer
50 50
51 public enum EventType : int 51 public enum EventType : int
52 { 52 {
53 LongPoll = 0, 53 Poll = 0,
54 LslHttp = 1, 54 LslHttp = 1,
55 Inventory = 2, 55 Inventory = 2,
56 Texture = 3, 56 Texture = 3,
@@ -82,7 +82,7 @@ namespace OpenSim.Framework.Servers.HttpServer
82 NoEvents = pNoEvents; 82 NoEvents = pNoEvents;
83 Id = pId; 83 Id = pId;
84 TimeOutms = pTimeOutms; 84 TimeOutms = pTimeOutms;
85 Type = EventType.LongPoll; 85 Type = EventType.Poll;
86 } 86 }
87 } 87 }
88} 88}