remove comments of things that have been done in upstream branches
This commit is contained in:
parent
c60f373ae4
commit
ad586df9fb
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue