I downloaded Linux PAM to access the MyPW Authentication API and
modified the routine to fit my needs.
I am getting the following error when trying to compile:
Cannot convert 'xmlrpc_curl_xportparms *' to 'xmlrpc_xportparms
*'
This is in reference to lines:
struct xmlrpc_clientparms clientParms;
struct xmlrpc_curl_xportparms curlParms;
curlParms.no_ssl_verifypeer = 1;
curlParms.no_ssl_verifyhost = 1;
curlParms.user_agent = "mypw_app/1.0";
clientParms.transport = "curl";
clientParms.transportparmsP = &curlParms; // this is the problem
line
Thanks
Frank