* Pipes IPEndPoint through all Login methods, including LLSD/OSD login paths.

This commit is contained in:
Adam Frisby
2009-05-23 06:14:02 +00:00
parent 31baeef469
commit e9ea959263
6 changed files with 15 additions and 14 deletions

View File

@@ -25,10 +25,11 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System.Net;
using OpenMetaverse.StructuredData;
namespace OpenSim.Framework.Servers.HttpServer
{
public delegate OSD LLSDMethod( string path, OSD request, string endpoint );
public delegate OSD DefaultLLSDMethod(OSD request);
public delegate OSD DefaultLLSDMethod(OSD request, IPEndPoint client);
}