aboutsummaryrefslogtreecommitdiff
path: root/lib/xmlrpc/xmlrpc.go
AgeCommit message (Collapse)Author
2026-01-03all: use SPDX license header formatShulhan
2023-09-11lib/xmlrpc: add missing comment to exported type and methodsShulhan
2022-05-09all: reformat all codes using gofmt 1.19 (the Go tip)Shulhan
2021-06-05xmlrpc: check for returned ok arguments on interface conversionShulhan
This is to make sure that the returned value is not ignored with "_". While at it, remove unused global constant `boolTrue`.
2021-05-25xmlrpc: convert the uint8 and uint16 as type Integer, and Uint as DoubleShulhan
Previously, uint8 and uint16 will be converted as Double, but those types are in range of four bytes so it can still be handled by int32.
2021-05-19xmlrpc: refactoring the parser for decoding XML-RPC requestShulhan
This changes, * method to parse XML-RPC request, * change the Member field Value type to pointer to Value, * change the Request field Params type to slice of pointer of Value, * change the Response field Param type to pointer to Value, * rename the Value fields from Members to StructMembers and Values to ArrayValues
2020-06-10all: update email addressShulhan
2020-01-20xmlprc: package for working with XML-RPCShulhan
This package provide a client library for talking with XML-RPC server.