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
AgeCommit message (Collapse)Author
2017-08-28Merge pull request #6 from kasper93/masterHEADmasterTim Cooper
Change Callback declaration to use const string for status.
2017-08-21Change Callback declaration to use const string for status.Kacper Michajłow
It is bad to pass string literals as non-const string pointer, because someone might try to edit it.
2016-10-19Merge pull request #5 from kasper93/masterTim Cooper
Some minor fixes to suppress compilation warnings and exclude not needed code from compilation.
2016-05-21Perform proper double type comparision.Kacper Michajłow
2016-05-21Cosmetic changes.Kacper Michajłow
2016-05-21Make copy assigment operator private for ValueArray.Kacper Michajłow
2016-05-21Remove global stringKacper Michajłow
It is not used anywhere and only introduce unneded overhead.
2016-05-21Suppress some compilation warnings.Kacper Michajłow
2016-05-21Include unit test function conditionally.Kacper Michajłow
2016-01-29Merge pull request #2 from Underground78/string_conversion_operatorsTim Cooper
Try to make some sense of the string conversion operators.
2016-01-29Merge pull request #1 from Underground78/ease_compilTim Cooper
Explicitly use the non-unicode versions of the WinAPI functions.
2016-01-19Remove invalid string conversion operators.Underground78
Cast to std::string does not work for VS2013 and VS2015 and cast to string reference must not be used because they point to temporary variables.
2016-01-19Explicitly use the non-unicode versions of the WinAPI functions.Underground78
This makes it easier to compile XmlRpc4Win from unicode projects.
2016-01-19Merge branch 'master' of github.com:drtimcooper/XmlRpc4WinDr Tim Cooper
2016-01-19workDr Tim Cooper
2016-01-19Merge pull request #3 from Underground78/warning_fixesTim Cooper
Various warning fixes
2016-01-19Merge pull request #4 from Underground78/coverityTim Cooper
Fix some errors found with Coverity
2016-01-18Use INTERNET_PORT for the internet port representation.Underground78
Avoid getting a C4244 warning.
2016-01-18Use the proper specifier for size_t variable.Underground78
2016-01-18Silence some C4267 warnings (conversion from size_t to DWORD).Underground78
2016-01-18Use the secure version of the functions strcpy and sprintf.Underground78
2016-01-18Silence a C4267 warning (conversion from size_t to int).Underground78
2016-01-18Silence a C4244 warning (conversion from int to char).Underground78
2016-01-14XmlRpcImplementation::execute: Fix a memory leak.Underground78
Found with Coverity.
2016-01-14XmlRpcValue::timeFromXml: Always initialize all fields of struct tm.Underground78
The norm doesn't say anything about unknown day of the week/year but it is probably still better to give them a specific value which is clearly invalid. Found with Coverity.
2016-01-14XmlRpcValue::structFromXml: Fix a memory leak.Underground78
Found with Coverity.
2016-01-14Remove duplicated conditional branch.Underground78
This was cosmetic only, it had no real side effect. Found with Coverity.
2016-01-14Fix the date comparison function.Underground78
Days were not properly compared due to a typo. Found with Coverity.
2016-01-11SetupDr Tim Cooper
2016-01-11Migrating XmlRpc4Win from SourceForget to githubDr Tim Cooper
2016-01-11Initial commitTim Cooper