Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion OpenSim/Framework/OutboundUrlFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,13 @@ public bool CheckAllowed(Uri url)
{
// m_log.DebugFormat("[OUTBOUND URL FILTER]: Found [{0}] in blacklist for {1}", url, Name);

// Check blacklist exceptions
// if the endpoint is destined to an LSL script, always allow.
if (url.indexOf("/lslhttp/") != -1)
{
return true;
}

// Check blacklist exceptions for non-LSL exceptions
allowed
= OutboundUrlFilter.IsInNetwork(
addr, url.Port, m_blacklistExceptionNetworks, m_blacklistExceptionEndPoints, Name);
Expand Down