diff options
author | Christian Pointner <equinox@anytun.org> | 2008-11-24 15:58:21 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-11-24 15:58:21 +0000 |
commit | 347f038c20550a4e5e2a4747c339d36991bb5214 (patch) | |
tree | 2091fcc2e661f8adbb0fd28659fb28b70d433779 /src/packetSource.h | |
parent | fixed anytun-showtables (diff) |
fixes for boost 1.35 and higher
Diffstat (limited to 'src/packetSource.h')
-rw-r--r-- | src/packetSource.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/packetSource.h b/src/packetSource.h index 4fe6125..2b08cf8 100644 --- a/src/packetSource.h +++ b/src/packetSource.h @@ -29,7 +29,7 @@ * along with anytun. If not, see <http://www.gnu.org/licenses/>. */ -#include <asio.hpp> +#include <boost/asio.hpp> #include "datatypes.h" #include "buffer.h" @@ -53,7 +53,7 @@ public: void send(u_int8_t* buf, u_int32_t len, std::string addr, u_int16_t port); private: - asio::io_service io_service_; - asio::ip::udp::socket sock_; + boost::asio::io_service io_service_; + boost::asio::ip::udp::socket sock_; }; |