Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/drtimcooper/XmlRpc4Win.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Cooper <tim@buzzhives.com>2016-01-19 02:29:36 +0300
committerTim Cooper <tim@buzzhives.com>2016-01-19 02:29:36 +0300
commitdc738ef066dc97732ff3d580298afc0ee4ddeb9e (patch)
tree7f27cd3dd22861848c8214ef09824a77fc195031
parent972b2e8bc900637a99162ee5f84826cbfc2f294e (diff)
parent249e6198a41e379807f224de9c3772fbf3bbfaca (diff)
Merge pull request #3 from Underground78/warning_fixes
Various warning fixes
-rw-r--r--TimXmlRpc.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/TimXmlRpc.cpp b/TimXmlRpc.cpp
index 2434a0a..676cd8a 100644
--- a/TimXmlRpc.cpp
+++ b/TimXmlRpc.cpp
@@ -647,7 +647,7 @@ static char* xmlDecode(const char* s, const char* end)
*d++ = '>', s += 4;
else if (strbegins(s, "&#", true)) {
s += 2;
- *d++ = atoi(s);
+ *d++ = (char)atoi(s);
while (*s >= '0' && *s <= '9')
s++;
if (*s == ';')
@@ -740,7 +740,7 @@ bool XmlRpcValue::operator==(XmlRpcValue const& other) const
int XmlRpcValue::size() const
{
switch (_type) {
- case TypeString: return strlen(u.asString);
+ case TypeString: return int(strlen(u.asString));
case TypeBase64: return int(u.asBinary->size());
case TypeArray: return int(u.asArray->size());
case TypeStruct: return int(u.asStruct->size());
@@ -1219,7 +1219,7 @@ class XmlRpcImplementation {
HINTERNET hInternet;
HINTERNET hConnect;
std::string object;
- int port;
+ INTERNET_PORT port;
void hadError(const char* function);
bool connect(const char* server);
@@ -1243,7 +1243,7 @@ public:
int HttpErrcode;
bool isFault;
- XmlRpcImplementation(const char* server, int port, const char* object, XmlRpcClient::protocol_enum protocol);
+ XmlRpcImplementation(const char* server, INTERNET_PORT port, const char* object, XmlRpcClient::protocol_enum protocol);
XmlRpcImplementation(const char* URI);
bool execute(const char* method, XmlRpcValue const& params, XmlRpcValue& result);
void setCallback(XmlRpcCallback Callback, void* context)
@@ -1255,7 +1255,7 @@ public:
XmlRpcClient::XmlRpcClient(const char* server, int port, const char* object, protocol_enum protocol)
{
- secret = new XmlRpcImplementation(server, port, object, protocol);
+ secret = new XmlRpcImplementation(server, (INTERNET_PORT)port, object, protocol);
}
@@ -1305,8 +1305,8 @@ void XmlRpcClient::setBasicAuth_Callback(getBasicAuth_UsernameAndPassword_fn fn)
void XmlRpcClient::setBasicAuth_UsernameAndPassword(const char* username, const char* password)
{
- strcpy(secret->BasicAuth.username, username);
- strcpy(secret->BasicAuth.password, password);
+ strcpy_s(secret->BasicAuth.username, username);
+ strcpy_s(secret->BasicAuth.password, password);
}
@@ -1329,7 +1329,7 @@ void XmlRpcClient::close()
}
-XmlRpcImplementation::XmlRpcImplementation(const char* server, int _port, const char* _object,
+XmlRpcImplementation::XmlRpcImplementation(const char* server, INTERNET_PORT _port, const char* _object,
XmlRpcClient::protocol_enum _protocol)
{
port = _port;
@@ -1369,7 +1369,7 @@ XmlRpcImplementation::XmlRpcImplementation(const char* URI)
std::string server(URI, t - URI);
if (*t == ':') {
t++;
- port = atoi(t);
+ port = (INTERNET_PORT)atoi(t);
while (*t >= '0' && *t <= '9')
t++;
}
@@ -1443,7 +1443,7 @@ void XmlRpcImplementation::hadError(const char* function)
);
if (buf == NULL) {
char tmp[512];
- sprintf(tmp, "Error %d", LastError);
+ sprintf_s(tmp, "Error %d", LastError);
errmsg += tmp;
}
else {
@@ -1474,7 +1474,7 @@ static void CALLBACK myInternetCallback(HINTERNET hInternet,
case INTERNET_STATUS_REQUEST_SENT: status = "Data sent"; break;
case INTERNET_STATUS_SENDING_REQUEST: status = "Sending data"; break;
default: status = buf;
- sprintf(buf, "Status %d", dwInternetStatus);
+ sprintf_s(buf, "Status %d", dwInternetStatus);
break;
}
connection->Callback(connection->context, status);
@@ -1537,11 +1537,11 @@ RETRY:
// Add the 'Content-Type' && 'Content-length' headers
char header[255]; // Thanks, Anthony Chan.
- sprintf(header, "Content-Type: text/xml\r\nContent-length: %d", ostr.str().size());
- HttpAddRequestHeaders(hHttpFile, header, strlen(header), HTTP_ADDREQ_FLAG_ADD);
+ sprintf_s(header, "Content-Type: text/xml\r\nContent-length: %Iu", ostr.str().size());
+ HttpAddRequestHeaders(hHttpFile, header, (DWORD)strlen(header), HTTP_ADDREQ_FLAG_ADD);
// Send the request:
- if (! HttpSendRequest(hHttpFile, NULL, 0, (LPVOID)ostr.str().c_str(), ostr.str().size())) {
+ if (! HttpSendRequest(hHttpFile, NULL, 0, (LPVOID)ostr.str().c_str(), (DWORD)ostr.str().size())) {
hadError("HttpSendRequest");
return false;
}
@@ -1620,7 +1620,7 @@ RETRY:
errmsg = "Could not query HTTP result status";
else {
char buf[512];
- sprintf(buf, "Low level (HTTP) error: %d %s", HttpErrcode, status_text);
+ sprintf_s(buf, "Low level (HTTP) error: %d %s", HttpErrcode, status_text);
errmsg = buf;
}
free(status_text);