13 lines
210 B
C++
13 lines
210 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace peerplays {
|
|
namespace net {
|
|
|
|
std::string resolveHostAddr(const std::string & hostName);
|
|
std::string stripProtoName(const std::string & utl);
|
|
|
|
|
|
} // net
|
|
} // peerplays
|