forgot about lsl secure urls service.. so lets try another way for now (mantis 8382)
parent
9e71b5575a
commit
1ea5116f00
|
@ -45,7 +45,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
|
|
||||||
private Dictionary<int, Queue<PollServiceHttpRequest>> m_bycontext;
|
private Dictionary<int, Queue<PollServiceHttpRequest>> m_bycontext;
|
||||||
private BlockingCollection<PollServiceHttpRequest> m_requests = new BlockingCollection<PollServiceHttpRequest>();
|
private BlockingCollection<PollServiceHttpRequest> m_requests = new BlockingCollection<PollServiceHttpRequest>();
|
||||||
private static ConcurrentQueue<PollServiceHttpRequest> m_retryRequests = new ConcurrentQueue<PollServiceHttpRequest>();
|
private ConcurrentQueue<PollServiceHttpRequest> m_retryRequests = new ConcurrentQueue<PollServiceHttpRequest>();
|
||||||
|
|
||||||
private uint m_WorkerThreadCount = 0;
|
private uint m_WorkerThreadCount = 0;
|
||||||
private Thread[] m_workerThreads;
|
private Thread[] m_workerThreads;
|
||||||
|
|
|
@ -364,7 +364,7 @@ namespace OpenSim.Framework.Servers
|
||||||
if (ipaddr != null)
|
if (ipaddr != null)
|
||||||
m_Servers[port].ListenIPAddress = ipaddr;
|
m_Servers[port].ListenIPAddress = ipaddr;
|
||||||
|
|
||||||
m_Servers[port].Start(false, false);
|
m_Servers[port].Start();
|
||||||
|
|
||||||
return m_Servers[port];
|
return m_Servers[port];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue