FS-2746 --resolve large xmlrpc update thanks garmt

This commit is contained in:
Jeff Lenk
2012-10-13 11:37:25 -05:00
parent 37ecad9903
commit 6b6c83a718
397 changed files with 41822 additions and 33841 deletions

View File

@@ -1,4 +1,4 @@
/* A simple asynchronous XML-RPC client written in C, as an example of
/* A simple asynchronous XML-RPC client program written in C, as an example of
Xmlrpc-c asynchronous RPC facilities. This is the same as the
simpler synchronous client xmlprc_sample_add_client.c, except that
it adds 3 different pairs of numbers with the summation RPCs going on
@@ -35,7 +35,7 @@ static void
handle_sample_add_response(const char * const serverUrl,
const char * const methodName,
xmlrpc_value * const paramArrayP,
void * const user_data ATTR_UNUSED,
void * const user_data,
xmlrpc_env * const faultP,
xmlrpc_value * const resultP) {
@@ -70,7 +70,7 @@ handle_sample_add_response(const char * const serverUrl,
int
main(int const argc,
const char ** const argv ATTR_UNUSED) {
const char ** const argv) {
const char * const serverUrl = "http://localhost:8080/RPC2";
const char * const methodName = "sample.add";