- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
看起来它不应该那样工作。我在发送第一个数据包(大小为 10 字节并一次线性增加 10 字节)后启动时钟(在客户端),并在发送最后一个数据包后将其关闭。
在服务器端(数据包的接收者),我在收到第一个数据包后启动时钟,并在收到最后一个数据包后停止。为什么发送比接收需要更长的时间?
客户端模型代码(UDP 发送方)
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <ctime>
#define TRIALS 6500 // will have 6500 trials to keep under maximum UDP packet length of 65536
#define SERVERPORT 4950 // the port users will be connecting to
#define BUFFER 65001 // the max # of bytes I will be sending
int main(int argc, char *argv[])
{
clock_t start; // for calculating time
long double duration = 0; // final result of the time
unsigned long long int totalbytes = 0; // for calculating total data
unsigned long long int throughput = 0; // will be final result of the throughput (i.e. totalbytes/duration)
int sockfd;
struct sockaddr_in their_addr; // connector's address information
struct hostent *he;
int numbytes;
if ((he=gethostbyname(argv[1])) == NULL) { // get the host info
perror("gethostbyname");
exit(1);
}
if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
perror("socket");
exit(1);
}
their_addr.sin_family = AF_INET; // host byte order
their_addr.sin_port = htons(SERVERPORT); // short, network byte order
their_addr.sin_addr = *((struct in_addr *)he->h_addr);
memset(&(their_addr.sin_zero), '\0', 8); // zero the rest of the struct
char message[BUFFER] = "abcdefghij"; //will start with 10 bytes
for (int i = 0; i < TRIALS; i++)
{
if ((numbytes = sendto(sockfd, message, strlen(message), 0,
(struct sockaddr *)&their_addr, sizeof(struct sockaddr))) == -1) {
perror("sendto");
exit(1);
}
if (i == 0)
{
start = clock(); //startin clock after sending first message
}
strcat(message, "abcdefghij"); //will add 10 bytes at each try
//printf("Trial #: %d\n", i);
//printf("sent %d bytes to %s\n", numbytes, inet_ntoa(their_addr.sin_addr));
totalbytes += numbytes; //updating total number of bytes sent
}
duration = (clock() - start ) / (double) CLOCKS_PER_SEC;
printf("\nThe process took %Lf seconds.\n", duration);
printf("A total of %llu bytes were sent.\n", totalbytes);
throughput = (long double)totalbytes/duration;
printf("The attempted data rate is: %llu bytes per second\n\n", throughput);
close(sockfd);
return 0;
}
以及UDP服务器(接收端)的代码
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <ctime>
#define MYPORT 4950 // the port users will be connecting to
#define MAXBUFLEN 65001 // max # of bytes I will be receiving.
int main(void)
{
int sockfd;
struct sockaddr_in my_addr; // my address information
struct sockaddr_in their_addr; // connector's address information
socklen_t addr_len;
int numbytes;
char buf[MAXBUFLEN];
clock_t start;
long double duration = 0; // final result of the time
unsigned long long int totalbytes = 0; // for calculating total data
unsigned long long int throughput = 0; // will be final result of the throughput (i.e. totalbytes/duration)
if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
perror("socket");
exit(1);
}
my_addr.sin_family = AF_INET; // host byte order
my_addr.sin_port = htons(MYPORT); // short, network byte order
my_addr.sin_addr.s_addr = INADDR_ANY; // automatically fill with my IP
memset(&(my_addr.sin_zero), '\0', 8); // zero the rest of the struct
if (bind(sockfd, (struct sockaddr *)&my_addr,
sizeof(struct sockaddr)) == -1) {
perror("bind");
exit(1);
}
addr_len = sizeof(struct sockaddr);
int i = 0; // count number of packets received.
while(1)
{
if ((numbytes = recvfrom(sockfd, buf, MAXBUFLEN , 0,
(struct sockaddr *)&their_addr, &addr_len)) == -1) {
perror("recvfrom");
exit(1);
}
if(i == 0)
{
start = clock(); // starting time when receiving the first packet of length = 10 bytes.
}
//printf("Trial #: %d\n", i);
//printf("got packet from %s\n",inet_ntoa(their_addr.sin_addr));
//printf("packet is %d bytes long\n",numbytes);
totalbytes += numbytes;
if(numbytes >= 65000) //if last packet lets break out of while loop
{
break;
}
//buf[numbytes] = '\0';
//printf("packet contains \"%s\"\n",buf);
++i;
}
duration = (clock() - start ) / (double) CLOCKS_PER_SEC;
printf("\nThe process took %Lf seconds.\n", duration);
printf("A total of %llu bytes were received.\n", totalbytes);
throughput = (long double)totalbytes/duration;
printf("The actual data rate is: %llu bytes per second\n\n", throughput);
close(sockfd);
return 0;
}
编译运行服务器
user:socket$ g++ udp_server.cc -o udp_server
user:socket$ ./udp_server
编译运行服务器
user:socket$ g++ udp_client.cc -o udp_client
user:socket$ ./udp_client 127.0.0.1
示例结果:
客户端(发送方)
The process took 0.238971 seconds.
A total of 211282500 bytes were sent.
The attempted data rate is: 884134476 bytes per second
服务器(接收者)
The process took 0.042443 seconds.
A total of 211214670 bytes were received.
The actual data rate is: 4976431213 bytes per second
最佳答案
基准测试是谎言,尤其是当您使用如此短的时间并且还存在数据包丢失时。
但我的猜测是涉及 ARP 查找以查找服务器的 MAC 地址,因为这是将数据包传送到服务器网卡所必需的。只有在 ARP 响应之后,MAC 才已知,第一个数据包才能传送到服务器。一直以来,客户端已经发送了数据。其中一些位于发送缓冲区中,因为只要 MAC 未知(如果服务器和客户端在同一网络中),它们就无法发送。有些可能已经丢失,因为发送缓冲区已满。
这意味着由于 ARP 查找导致的延迟,服务器开始接收第一个数据包的时间比客户端发送的要晚得多。但是在 MAC 已知后,所有数据包都可以立即传送,这样服务器将在客户端发送后不久收到最后一个数据包。较晚的开始时间和(大约)相同的结束时间,时间差异较小,这可以解释您所看到的。
关于c - 为什么我的 UDP 客户端发送数据比服务器接收数据花费的时间更长?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34172028/
我有一个存储结构向量的应用程序。这些结构保存有关系统上每个 GPU 的信息,如内存和 giga-flop/s。每个系统上有不同数量的 GPU。 我有一个程序可以同时在多台机器上运行,我需要收集这些数据
我很好奇 MPI 中缺少此功能: MPI_Isendrecv( ... ); 即,非阻塞发送和接收,谁能告诉我其省略背后的基本原理? 最佳答案 我的看法是 MPI_SENDRECV存在是为了方便那些想
当我用以下方法监听TCP或UDP套接字时 ssize_t recv(int sockfd, void *buf, size_t len, int flags); 或者 ssize_t recvfrom
SUM:如何在 azure 事件网格中推迟事件触发或事件接收? 我设计的系统需要对低频对象状态(创建、启动、检查长时间启动状态、结束)使用react。它看起来像是事件处理的候选者。我想用azure函数
我正在 MPI 中实现一个程序,其中主进程(等级 = 0)应该能够接收来自其他进程的请求,这些进程要求只有根才知道的变量值。如果我按等级 0 进行 MPI_Recv(...),我必须指定向根发送请求的
我正在学习DX12,并在此过程中学习“旧版Win32”。 我在退出主循环时遇到问题,这似乎与我没有收到WM_CLOSE消息有关。 在C++,Windows 10控制台应用程序中。 #include
SUM:如何在 azure 事件网格中推迟事件触发或事件接收? 我设计的系统需要对低频对象状态(创建、启动、检查长时间启动状态、结束)使用react。它看起来像是事件处理的候选者。我想用azure函数
我想编写方法来通过号码发送短信并使用编辑文本字段中的文本。发送消息后,我想收到一些声音或其他东西来提醒我收到短信。我怎样才能做到这一点?先感谢您,狼。 最佳答案 这个网站似乎对两者都有很好的描述:ht
所以我正在用 Java 编写一个程序,在 DatagramSocket 和 DatagramPacket 的帮助下发送和接收数据。问题是,在我发送数据/接收数据之间的某个时间 - 我发送数据的程序中的
我是 Android 编程新手,我正在用 Java 编写一个应用程序,该应用程序可以打开相机拍照并保存。我通过 Intents 做到了,但看不到 onActivityResult 正在运行。 我已经在
我有一个套接字服务器和一个套接字客户端。客户端只有一个套接字。我必须使用线程在客户端发送/接收数据。 static int sock = -1; static std::mutex mutex; vo
我正在尝试使用 c 中的套接字实现 TCP 服务器/客户端。我以这样的方式编写程序,即我们在客户端发送的任何内容都逐行显示在服务器中,直到键入退出。该程序可以运行,但数据最后一起显示在服务器中。有人可
我正在使用微 Controller 与 SIM808 模块通信,我想发送和接收 AT 命令。 现在的问题是,对于某些命令,我只收到了我应该收到的答案的一部分,但对于其他一些命令,我收到了我应该
我用c设计了一个消息传递接口(interface),用于在我的系统中运行的不同进程之间提供通信。该接口(interface)为此目的创建 10-12 个线程,并使用 TCP 套接字提供通信。 它工作正
我需要澄清一下在套接字程序中使用多个发送/接收。我的客户端程序如下所示(使用 TCP SOCK_STREAM)。 send(sockfd,"Messgfromlient",15,0);
我正在构建一个真正的基本代理服务器到我现有的HTTP服务器中。将传入连接添加到队列中,并将信号发送到另一个等待线程队列中的一个线程。此线程从队列中获取传入连接并对其进行处理。 问题是代理程序真的很慢。
我正在使用 $routeProvider 设置一条类似 的路线 when('/grab/:param1/:param2', { controller: 'someController',
我在欧洲有通过 HLS 流式传输的商业流媒体服务器。http://europe.server/stream1/index.m3u8现在我在美国的客户由于距离而遇到一些网络问题。 所以我在美国部署了新服
我有一个长期运行的 celery 任务,该任务遍历一系列项目并执行一些操作。 任务应该以某种方式报告当前正在处理的项目,以便最终用户知道任务的进度。 目前,我的django应用程序和celery一起坐
我需要将音频文件从浏览器发送到 python Controller 。我是这样做的: var xmlHttp = new XMLHttpRequest(); xmlHttp.open( "POST",
我是一名优秀的程序员,十分优秀!