我正在尝试用c / c ++学习套接字编程。我写了两个小的udp发件人。一个是bind()ing,另一个是bind()ing。我在远程IP上构建了两个程序。与此同时,我在本地系统上构建了一个小型udp接收器。我试图将udp消息从两个发件人程序发送到我的本地接收器。但接收方只能通过bind()接收来自发送方的消息。它必须与目的地绑定在相同的端口号上。否则,即使使用bind(),它仍然不起作用。 但是当我将发送程序没有bind()移动到我的本地系统,并将消息发送到“127.0.0.1”时,它工作了。
所以对我来说,似乎在本地发送udp数据包的src端口和dest端口可以是不同的数字。但是当从不同的IP地址发送udp数据包时,发送和接收端口必须具有匹配的端口号。是吗?
这是我的udp发件人程序:
#include <iostream>
#include <cstring>
#include <cerrno>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
using namespace std;
int main(int argc, char *argv[]){
if(argc!=2){
cout<<"need arg"<<endl;
return 1;
}
int sfd = socket(AF_INET, SOCK_DGRAM, 0);
struct sockaddr_in des;
des.sin_family = AF_INET;
des.sin_port = 9999;
des.sin_addr.s_addr = inet_addr("my ip address"); //I used "127.0.0.1" when I tried it locally.
/* this is all the difference between the sender with and without bind()
struct sockaddr_in sai;
sai.sin_family = AF_INET;
sai.sin_port = 5001;
sai.sin_addr.s_addr = INADDR_ANY;
if(bind(sfd, (struct sockaddr *)&sai, sizeof sai)==-1){
cout<<"bind:"<<strerror(errno)<<endl;
_exit(1);
}
cout<<"binded successfully"<<endl;
*/
int byt = sendto(sfd, argv[1], strlen(argv[1])+1, 0, (struct sockaddr *)&des, sizeof des);
cout<<byt<<endl;
if(byt<0){
cout<<"sendto"<<strerror(errno)<<endl;
}
return 0;
}
答案 0 :(得分:4)
所以对我来说,似乎在本地发送udp数据包的src端口和dest端口可以是不同的数字。
正确。
但是当从不同的IP地址发送udp数据包时,发送和接收端口必须具有匹配的端口号。是吗?
没有。它没有。回复时要做的是确保使用通过recvfrom()
返回的接收数据报的源端口作为sendto()
中回复数据报的目标端口。