diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-09-23 17:56:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-09-23 17:56:08 +0100 |
| commit | 737c3392039740f7a22a9ff922f8492905173b9c (patch) | |
| tree | 0d5de18847376090e7a653b5734b9b105bd43786 /src/lib/server.h | |
| parent | e89fb9d81358b51ed0e231725f7fb6eb63f96c5b (diff) | |
Tidy up naming.
Diffstat (limited to 'src/lib/server.h')
| -rw-r--r-- | src/lib/server.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/server.h b/src/lib/server.h index 4cb6f2563..32ba8dc4b 100644 --- a/src/lib/server.h +++ b/src/lib/server.h @@ -28,7 +28,7 @@ #include <boost/thread/condition.hpp> #include "log.h" -class DeadlineWrapper; +class Socket; /** @class ServerDescription * @brief Class to describe a server to which we can send encoding work. @@ -82,10 +82,10 @@ public: private: void worker_thread (); - int process (boost::shared_ptr<DeadlineWrapper> wrapper); + int process (boost::shared_ptr<Socket> socket); std::vector<boost::thread *> _worker_threads; - std::list<boost::shared_ptr<DeadlineWrapper> > _queue; + std::list<boost::shared_ptr<Socket> > _queue; boost::mutex _worker_mutex; boost::condition _worker_condition; Log* _log; |
