Add additional return status

Adding additional return status for JsonRpcMethod. Now returns true/false
This commit is contained in:
BlueWall
2013-01-23 08:14:21 -05:00
parent a6afd2f706
commit 1776986dc3
2 changed files with 23 additions and 4 deletions

View File

@@ -30,5 +30,5 @@ using OpenMetaverse.StructuredData;
namespace OpenSim.Framework.Servers.HttpServer
{
public delegate void JsonRPCMethod(OSDMap jsonRpcRequest, ref JsonRpcResponse response);
public delegate bool JsonRPCMethod(OSDMap jsonRpcRequest, ref JsonRpcResponse response);
}