remove comments of things that have been done in upstream branches

This commit is contained in:
Arvid Norberg 2012-08-22 00:56:38 +00:00
parent c60f373ae4
commit ad586df9fb
1 changed files with 0 additions and 6 deletions

View File

@ -101,9 +101,6 @@ private:
entry(): connecting(false), ticket(0), expires(max_time()), priority(0) {}
// called when the connection is initiated
// this is when the timeout countdown starts
// TODO: if we don't actually need the connection queue
// to hold ownership of objects, replace these boost functions
// with pointer to a pure virtual interface class
boost::function<void(int)> on_connect;
// called if done hasn't been called within the timeout
// or if the connection queue aborts. This means there
@ -119,9 +116,6 @@ private:
int priority;
};
// TODO: split this into a queue and connecting map. The key for the map
// is the ticket. Most field in entry would only be necessary for the
// connecting map.
std::list<entry> m_queue;
// the next ticket id a connection will be given