X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fdcpomatic_socket.h;h=9e81faa0c0b967402d06c118d384ba28dfde3859;hp=d2ee6d5555c634a8c58a31e47e81abbda0e746ec;hb=aeb835a18c8df347e0ed68fb24631b320abeb611;hpb=f213fd833a840fc97e3875979ae7dc7cbbc883b1 diff --git a/src/lib/dcpomatic_socket.h b/src/lib/dcpomatic_socket.h index d2ee6d555..9e81faa0c 100644 --- a/src/lib/dcpomatic_socket.h +++ b/src/lib/dcpomatic_socket.h @@ -23,14 +23,13 @@ * @brief A class to wrap a boost::asio::ip::tcp::socket with some things * that are useful for DCP-o-matic. * - * This class wraps some things that I could not work out how to do with boost; + * This class wraps some things that I could not work out how to do easily with boost; * most notably, sync read/write calls with timeouts. */ -class Socket +class Socket : public boost::noncopyable { public: Socket (int timeout = 30); - ~Socket (); /** @return Our underlying socket */ boost::asio::ip::tcp::socket& socket () { @@ -38,14 +37,13 @@ public: } void connect (boost::asio::ip::tcp::endpoint); - void accept (int); void write (uint32_t n); void write (uint8_t const * data, int size); - + void read (uint8_t* data, int size); uint32_t read_uint32 (); - + private: void check (); @@ -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; };