我正在创建一个winsock UDP程序。我正在使用的代码如下所示。
我总是收到端口分配错误。
我无法理解为什么总是分配的端口为零。如果有人可以帮我这个....
void UDPecho(const char *, const char *);
void errexit(const char *, ...);
#define LINELEN 128
#define WSVERS MAKEWORD(2, 0)
void main(int argc, char *argv[])
{
char *host = "localhost";
char *service = "echo";
WSADATA wsadata;
switch (argc) {
case 1:
host = "localhost";
break;
case 3:
service = argv[2];
/* FALL THROUGH */
case 2:
host = argv[1];
break;
default:
fprintf(stderr, "usage: UDPecho [host [port]]\n");
exit(1);
}
if (WSAStartup(WSVERS, &wsadata))
errexit("WSAStartup failed\n");
UDPecho(host, service);
WSACleanup();
exit(0);
}
void UDPecho(const char *host, const char *service)
{
char buf[LINELEN+1];
SOCKET s;
int nchars;
struct hostent *phe;
struct servent *pse;
struct protoent *ppe;
struct sockaddr_in sin, my_sin;
int type, status, client_port, size;
char *transport = "udp";
memset(&sin, 0, sizeof(sin));
sin.sin_family = AF_INET;
/* Map service name to port number */
if ( pse = getservbyname(service, transport) )
sin.sin_port = pse->s_port;
else if ( (sin.sin_port = htons((u_short)atoi(service)))== 0)
errexit("can't get \"%s\" service entry\n", service);
/* Map host name to IP address, allowing for dotted decimal */
if ( phe = gethostbyname(host) )
memcpy(&sin.sin_addr, phe->h_addr, phe->h_length);
else if ( (sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE)
errexit("can't get \"%s\" host entry\n", host);
printf("Our target server is at address %s\n", inet_ntoa(sin.sin_addr));
printf("The size of an FD set is %d\n", sizeof(FD_SET));
/* Map protocol name to protocol number */
if ( (ppe = getprotobyname(transport)) == 0)
errexit("can't get \"%s\" protocol entry\n", transport);
/* Use protocol to choose a socket type */
if (strcmp(transport, "udp") == 0)
type = SOCK_DGRAM;
else
type = SOCK_STREAM;
/* Allocate a socket */
s = socket(PF_INET, type, ppe->p_proto);
if (s == INVALID_SOCKET)
errexit("can't create socket: %d\n", GetLastError());
size = sizeof(sin);
memset(&my_sin, 0, sizeof(sin));
getsockname (s, (struct sockaddr *) &my_sin, &size);
client_port = ntohs(my_sin.sin_port);
if (client_port != 0)
printf ("We are using port %2d\n", client_port);
else {
printf("No port assigned yet\n");
}
}
void errexit(const char *format, ...)
{
va_list args;
va_start(args, format);
vfprintf(stderr, format, args);
va_end(args);
WSACleanup();
exit(1);
}
答案 0 :(得分:3)
在套接字上发出sendto()
或bind()
之前,UDP不会绑定到侦听端口。后者允许您选择要侦听的端口。另一方面,Sendto()
将为您选择一个短暂的端口。我希望端口保持为零,直到你做这两件事之一。
在一些评论之后,我对此进行了一些调查。根据{{3}},调用socket()
的结果是未绑定套接字。通过调用Single UNIX Specification或隐式sendto()
,套接字绑定。
将套接字的名称视为包含其(地址系列,协议,本地IP地址和本地端口号)的元组。前两个在socket()
调用中指定,后两个在bind()
调用。对于无连接协议,在断开连接的套接字上调用sendto()
将导致对OS选择的端口号进行隐式绑定。
最令人惊讶的是,我能找到这种行为的唯一参考是bind()
的备注部分。
如果套接字未绑定,系统会为本地关联分配唯一值,然后将套接字标记为bound。在这种情况下,应用程序可以使用getsockname(Windows套接字)来确定本地套接字名称。
Microsoft documentation for sendto()
状态的单一UNIX规范:
如果套接字尚未绑定到本地名称,则 address 指向的对象中存储的值未指定。
使用未指定的结果成功返回似乎是“标准”行为...嗯...我尝试的实现都成功返回,套接字地址为0.0.0.0 :0对应于具有未指定端口的INADDR_ANY
。在调用bind()
或sendto()
后,getsockname()
会返回填充的套接字地址,但地址部分可能仍为INADDR_ANY
。