diff options
author | Melanie | 2009-09-22 17:04:34 +0100 |
---|---|---|
committer | Melanie | 2009-09-22 17:04:34 +0100 |
commit | 97c18caa766e2dd72b152b78827ef554f2054f8c (patch) | |
tree | a15d21864c95dbfecc2c6eafb3b74dd59f830b0a /OpenSim/Framework | |
parent | Completely remove the prior implementation of the request event handling (diff) | |
download | opensim-SC_OLD-97c18caa766e2dd72b152b78827ef554f2054f8c.zip opensim-SC_OLD-97c18caa766e2dd72b152b78827ef554f2054f8c.tar.gz opensim-SC_OLD-97c18caa766e2dd72b152b78827ef554f2054f8c.tar.bz2 opensim-SC_OLD-97c18caa766e2dd72b152b78827ef554f2054f8c.tar.xz |
Thank you, Intari, for a patch that implements the missing pieces of
Http-in and makes the host name for URL generation configurable.
Applied with changes:
llGetSimulatorHostname was not changed, because the change breaks
existing behavior and carries a data exposure risk. That value needs
to be configurable, the proposed fixed change is not acceptable.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs index 7ed9e5c..9d512c6 100644 --- a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs +++ b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs | |||
@@ -44,9 +44,9 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
44 | public NoEventsMethod NoEvents; | 44 | public NoEventsMethod NoEvents; |
45 | public RequestMethod Request; | 45 | public RequestMethod Request; |
46 | public UUID Id; | 46 | public UUID Id; |
47 | public PollServiceEventArgs(RequestMethod Request, HasEventsMethod pHasEvents, GetEventsMethod pGetEvents, NoEventsMethod pNoEvents,UUID pId) | 47 | public PollServiceEventArgs(RequestMethod pRequest, HasEventsMethod pHasEvents, GetEventsMethod pGetEvents, NoEventsMethod pNoEvents,UUID pId) |
48 | { | 48 | { |
49 | Request = Request; | 49 | Request = pRequest; |
50 | HasEvents = pHasEvents; | 50 | HasEvents = pHasEvents; |
51 | GetEvents = pGetEvents; | 51 | GetEvents = pGetEvents; |
52 | NoEvents = pNoEvents; | 52 | NoEvents = pNoEvents; |