mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
revert introduction of some in arguments
This commit is contained in:
@@ -433,7 +433,7 @@ namespace OSHttpServer.Parser
|
||||
return handledBytes;
|
||||
}
|
||||
|
||||
static int GetLineBreakSize(in byte[] buffer, int offset)
|
||||
static int GetLineBreakSize(byte[] buffer, int offset)
|
||||
{
|
||||
byte c = buffer[offset];
|
||||
if (c == '\r')
|
||||
|
||||
@@ -31,13 +31,12 @@ using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Framework.Servers.HttpServer
|
||||
{
|
||||
public delegate OSHttpResponse RequestMethod(in UUID ID, OSHttpRequest request);
|
||||
public delegate bool HasEventsMethod(in UUID requestID, in UUID pId);
|
||||
public delegate OSHttpResponse RequestMethod(UUID ID, OSHttpRequest request);
|
||||
public delegate bool HasEventsMethod(UUID requestID, UUID pId);
|
||||
public delegate Hashtable GetEventsMethod(UUID requestID, UUID pId);
|
||||
|
||||
public delegate Hashtable GetEventsMethod(in UUID requestID, in UUID pId);
|
||||
|
||||
public delegate Hashtable NoEventsMethod(in UUID requestID, in UUID pId);
|
||||
public delegate void DropMethod(in UUID requestID, in UUID pId);
|
||||
public delegate Hashtable NoEventsMethod(UUID requestID, UUID pId);
|
||||
public delegate void DropMethod(UUID requestID, UUID pId);
|
||||
|
||||
public class PollServiceEventArgs : EventArgs
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user