我正在Ubuntu中使用套接字编程c ++编写服务器客户端程序。
这是将客户端连接到服务器的代码。
void setParent(string name,int parentPort){
struct addrinfo hints, *serverInfo , *rp;
int errcode;
char addrstr[100];
void *ptr;
int sfd;
std::string parentPortStr = std::to_string(parentPort);
memset (&hints, 0, sizeof (hints));
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = 0;
hints.ai_flags = AI_PASSIVE;
cerr << name << " " << parentPortStr << endl;
errcode = getaddrinfo (name.c_str() , parentPortStr.c_str(), &hints, &serverInfo);
if (errcode != 0)
{
cerr << "getaddrinfo has error" << endl;
return;
}
for (rp = serverInfo; rp != NULL; rp = rp->ai_next) {
cerr << "Trying next api " << rp->ai_family << " " << rp->ai_socktype << " " << rp ->ai_protocol << endl;
sfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
if (sfd == -1)
continue;
if (connect(sfd, rp->ai_addr, rp->ai_addrlen) != -1){
int enabled = 1;
setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &enabled, sizeof(int));
break;
}
close(sfd);
}
freeaddrinfo(serverInfo);
if(sfd == -1){
cerr << "cannot connect to father" << endl;
return;
}
cerr << "connected to father successfuly. socket: " << sfd << endl;
fatherSocket = sfd;
return;
}
当我这样调用这段代码时:setParent(“localhost”,“300”);它将始终接受连接。如果任何程序在端口7300上侦听,则无关紧要。
这是Debug输出:
setparent localhost 300
localhost 7300
Trying next api 2 1 6
connected to father successfully. socket: 5
如果我更改端口并不重要。它总是用ai_family尝试api:2,ai_socktype:1,ai_protocol:6并且会成功连接到它。
这是“sudo netstat -tulpn”结果:
tcp 0 0 127.0.1.1:53 0.0.0.0:* LISTEN 1163/dnsmasq
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 4814/cupsd
tcp6 0 0 ::1:631 :::* LISTEN 4814/cupsd
udp 0 0 0.0.0.0:45464 0.0.0.0:* 601/avahi-daemon: r
udp 0 0 0.0.0.0:631 0.0.0.0:* 989/cups-browsed
udp 0 0 0.0.0.0:5353 0.0.0.0:* 601/avahi-daemon: r
udp 0 0 0.0.0.0:26517 0.0.0.0:* 5053/dhclient
udp 0 0 127.0.1.1:53 0.0.0.0:* 1163/dnsmasq
udp 0 0 0.0.0.0:68 0.0.0.0:* 5053/dhclient
udp6 0 0 :::50297 :::* 601/avahi-daemon: r
udp6 0 0 :::5353 :::* 601/avahi-daemon: r
udp6 0 0 :::46583 :::* 5053/dhclient
如你所见,没有人听7300端口。
我无法了解那里发生的事情。
答案 0 :(得分:2)
从您自己的'content'
显示中看到,没有人连接到7300.
你正在测试错误的东西。您应该测试netstat
是否已成为1. enabled
如果失败,则不会(不能)将connect()
神奇地设置为-1。