peerplays-fc/include/fc/network/resolve.hpp

9 lines
168 B
C++
Raw Normal View History

2013-07-10 01:06:23 +00:00
#pragma once
#include <fc/vector.hpp>
#include <fc/network/ip.hpp>
namespace fc
{
2013-07-11 23:08:55 +00:00
std::vector<fc::ip::endpoint> resolve( const std::string& host, uint16_t port );
2013-07-10 01:06:23 +00:00
}