1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 22:13:12 +02:00

Document XMLRPC calls and added a .php class wrapper for them

This commit is contained in:
Adam
2010-11-06 21:07:49 -04:00
parent 21c8e89671
commit 87bdf73cb7
3 changed files with 143 additions and 1 deletions
+4 -1
View File
@@ -256,8 +256,11 @@ void MyXMLRPCClientSocket::HandleMessage()
{
if (name == "methodName")
request.name = data;
else if (name == "id")
else if (name == "name" && data == "id")
{
this->GetData(name, data);
request.id = data;
}
else if (name == "string")
request.data.push_back(data);
}