diff options
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_; }; |