diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-29 20:00:59 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-29 20:00:59 +0000 |
| commit | 27867be66579551018c926ed3339624e463c1b08 (patch) | |
| tree | 27c6482b10a0327be4ffb510859dd85cfd7fa9a1 /src/lib/dcpomatic_socket.h | |
| parent | 00ee110ef1de083759c4f74bdfeff78752b6198f (diff) | |
Remove unused socket stuff.
Diffstat (limited to 'src/lib/dcpomatic_socket.h')
| -rw-r--r-- | src/lib/dcpomatic_socket.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/dcpomatic_socket.h b/src/lib/dcpomatic_socket.h index b9859f600..82ca5ff69 100644 --- a/src/lib/dcpomatic_socket.h +++ b/src/lib/dcpomatic_socket.h @@ -30,7 +30,6 @@ class Socket : public boost::noncopyable { public: Socket (int timeout = 30); - ~Socket (); /** @return Our underlying socket */ boost::asio::ip::tcp::socket& socket () { @@ -38,7 +37,6 @@ public: } void connect (boost::asio::ip::tcp::endpoint); - void accept (int); void write (uint32_t n); void write (uint8_t const * data, int size); @@ -54,6 +52,5 @@ private: boost::asio::io_service _io_service; boost::asio::deadline_timer _deadline; boost::asio::ip::tcp::socket _socket; - boost::asio::ip::tcp::acceptor* _acceptor; int _timeout; }; |
