コード例 #1
0
ファイル: ipv4_helper.hpp プロジェクト: 0ver6tm/freelan-all
		inline void _helper_impl<mutable_helper_tag, ipv4_frame>::set_destination(boost::asio::ip::address_v4 _destination) const
		{
			this->frame().destination.s_addr = htonl(_destination.to_ulong());
		}
コード例 #2
0
	size_t operator()(const boost::asio::ip::address_v4& p_ip) const
	{
		return p_ip.to_ulong();
	}
コード例 #3
0
ファイル: ipv4_helper.hpp プロジェクト: 0ver6tm/freelan-all
		inline void _helper_impl<mutable_helper_tag, ipv4_frame>::set_source(boost::asio::ip::address_v4 _source) const
		{
			this->frame().source.s_addr = htonl(_source.to_ulong());
		}