about summary refs log tree commit diff stats
path: root/vendor/curlcpp
Commit message (Collapse)AuthorAgeFilesLines
* Updated curlcpp (important bug fixes)Kelly Rauchenberger2017-12-171-0/+0
| | | | | | | | | | | | | | | | | | | This update fixes the underlying issue behind an infinite-stalling bug that has been around since differencebot was written. The four bots that download images from ImageNet (difference, advice, grunge, capital) had the same small logic error whereby the catch block, written to handle the situation when an image had failed to download, incorrectly took the exception by value rather than by const reference. While inefficient, this should not have caused any problems, but curlcpp, which the four bots all use through libtwitter++'s dependence on it, had a bug in the copy constructor of the curl_exception object which could cause a deadlock situation. This went unnoticed for a while, despite the four bots having serious downtime issues. When this was discovered, the bots were patched so that the relevant catch block took the exception by const reference. While this fixed things, it is also prudent to update curlcpp to the newest version in which this bug has been fixed. refs JosephP91/curlcpp#100
* Updated curlcppKelly Rauchenberger2016-09-121-0/+0
|
* Started implementing user streamsKelly Rauchenberger2016-05-201-0/+0
| | | | You can now start a user stream and end it yourself. If it disconnects abnormally, it will reconnect with a backoff as described by Twitter. Some data structures have some fields parsed now; tweets have IDs, text, and authors. Users have IDs, screen names, and names. Notifications from the stream are parsed completely. The ability to follow and unfollow users has also been added, as well as the ability to get a list of friends and followers, and to reply to a tweet.
* Added basic ability to tweetKelly Rauchenberger2016-04-121-0/+0