Ai
1 Star 0 Fork 0

wangcichen/urbackup_backend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
LoadbalancerClient.cpp 2.91 KB
一键复制 编辑 原始数据 按行查看 历史
Martin 提交于 2019-07-17 21:18 +08:00 . Try connecting to all DNS lookup results in order
/*************************************************************************
* UrBackup - Client/Server backup system
* Copyright (C) 2011-2016 Martin Raiber
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#include "socket_header.h"
#include "LoadbalancerClient.h"
#include "Server.h"
#include <memory.h>
#include "LookupService.h"
CLoadbalancerClient::CLoadbalancerClient(std::string pLB, unsigned short pLBPort, int pWeight, unsigned short pServerport)
{
lb=pLB;
lbport=pLBPort;
weight=pWeight;
serverport=pServerport;
}
void CLoadbalancerClient::operator ()(void)
{
int rc;
#ifdef _WIN32
WSADATA wsadata;
rc = WSAStartup(MAKEWORD(2,2), &wsadata);
if(rc == SOCKET_ERROR) return;
#endif
int type = SOCK_STREAM;
#if !defined(_WIN32) && defined(SOCK_CLOEXEC)
type |= SOCK_CLOEXEC;
#endif
SOCKET s=socket(AF_INET, type,0);
if(s<1)
{
Server->Log("Creating SOCKET failed (LB)",LL_ERROR);
return;
}
#if !defined(_WIN32) && !defined(SOCK_CLOEXEC)
fcntl(s, F_SETFD, fcntl(s, F_GETFD, 0) | FD_CLOEXEC);
#endif
sockaddr_in addr;
memset(&addr, 0, sizeof(sockaddr_in));
addr.sin_family=AF_INET;
addr.sin_port=htons(lbport);
std::vector<SLookupBlockingResult> m_lookup_res = LookupBlocking(lb);
if(m_lookup_res.empty())
{
Server->Log("Cannot resolve \""+lb+"\"",LL_ERROR);
return;
}
SLookupBlockingResult& lookup_res = m_lookup_res[0];
if (lookup_res.is_ipv6)
{
Server->Log("Ipv6 not supported", LL_ERROR);
return;
}
addr.sin_addr.s_addr = lookup_res.addr_v4;
int err=connect(s, (sockaddr*)&addr, sizeof( sockaddr_in ) );
if( err==-1 )
{
Server->Log("Could not connect to LoadBalancer", LL_ERROR );
closesocket(s);
return;
}
Server->Log("Connected successfully to LoadBalancer", LL_INFO);
char msg[1+sizeof(int)+sizeof(unsigned short)];
msg[0]=2;
memcpy( &msg[1], &weight, sizeof(int) );
memcpy( &msg[1+sizeof(int)], &serverport, sizeof(unsigned short));
send( s, msg, 1+sizeof(int)+sizeof(unsigned short), MSG_NOSIGNAL);
while(true)
{
char buffer[100];
int rc=recv(s, buffer, 100, 0);
if( rc>0 )
{
if( buffer[0]==32 )
{
Server->Log("PONG", LL_INFO);
send( s, buffer, rc, MSG_NOSIGNAL);
}
}
else
{
closesocket(s);
Sleep(50);
this->operator()();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/wangcichen/urbackup_backend.git
git@gitee.com:wangcichen/urbackup_backend.git
wangcichen
urbackup_backend
urbackup_backend
dev

搜索帮助