* Replaced most of the internal sigc++ slots and signals with a

lightweight version. This cut the size of the library w/debug by more
than 300kb. All (almost) the signals the client connects to are now in
DownloadWrapper.

* Fixed off-by-one error in the month displayed.

* Moved tracker url cleanup to src/parse and improved it.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@580 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-10-14 21:50:45 +00:00
parent ad80247ba6
commit c99cc03d19
5 changed files with 155 additions and 12 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ print_ddmmyyyy(time_t t) {
str.fill('0');
str << std::setw(2) << u->tm_mday << '/'
<< std::setw(2) << u->tm_mon << '/'
<< std::setw(2) << (u->tm_mon + 1) << '/'
<< std::setw(4) << (1900 + u->tm_year);
return str.str();