| 41 | } |
| 42 | |
| 43 | UInt64 XMLRPCWriter::beginObject(const char* type) { |
| 44 | start(OBJECT); |
| 45 | |
| 46 | if (type) |
| 47 | packet.write(EXPAND("<value><struct type=\"")).write(type).write("\">"); |
| 48 | else |
| 49 | packet.write(EXPAND("<value><struct>")); |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | void XMLRPCWriter::writePropertyName(const char* value) { |
| 54 | start(); |