本文整理汇总了C++中TCPSocket::remoteAddr方法的典型用法代码示例。如果您正苦于以下问题:C++ TCPSocket::remoteAddr方法的具体用法?C++ TCPSocket::remoteAddr怎么用?C++ TCPSocket::remoteAddr使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TCPSocket
的用法示例。
在下文中一共展示了TCPSocket::remoteAddr方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: sendEMailCommand
bool sendEMailCommand (TCPSocket &sock, const std::string &command, u32 code = 250)
{
std::string buffer = command + "\r\n";
u32 size = (u32)buffer.size();
if(!command.empty())
{
if (sock.send ((u8 *)buffer.c_str(), size) != Sock::eSockResult_Ok)
{
Warning("EMAIL: Can't send data to the server");
return false;
}
}
std::string res;
char c;
for(;;)
{
size = 1;
if (sock.receive((u8*)&c, size, false) == Sock::eSockResult_Ok)
{
res += c;
if (c == '\n')
{
u32 c;
Email::fromString(res, c);
if (c != code)
{
Warning ("EMAIL: EMail command '%s' returned '%s' instead of code %d on sock %s", command.substr(0, 20).c_str(), res.substr(0, res.size()-2).c_str(), code, sock.remoteAddr().asString().c_str());
return false;
}
return true;
}
}
else
{
Warning ("EMAIL: EMail connection closed before end of line, command '%s' returned '%s' on sock %s (code %d)", command.substr(0, 20).c_str(), res.c_str(), sock.remoteAddr().asString().c_str(), code);
return false;
}
}
return true;
}