- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我写了一个 tcp 服务器和一个 tcp 客户端,客户端只向服务器发送数据并打印它写入了多少字节,服务器只接受连接,然后我使用 netstat 显示套接字的 Recv-Q 和 Send-问,我发现 Recv-Q+send-Q > write bytes。它是如何发生的?
client code:
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <netdb.h>
#include <stdarg.h>
#include <errno.h>
void error(int status, int err, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
if (err != 0)
{
fprintf(stderr, "errno = %d, errmsg = %s\n", err, strerror(err));
}
if (status != 0)
{
exit(err);
}
}
int set_address(const char *host, const char *serv, const char *protocol, sockaddr_in *addr)
{
struct hostent *host_info;
struct servent *serv_info;
memset(addr, 0, sizeof(sockaddr_in));
addr->sin_family = AF_INET;
if (host != NULL)
{
if (inet_aton(host, &addr->sin_addr) != 0)
{
host_info = gethostbyname(host);
if (host_info == NULL)
{
error(1, h_errno, "set_address failed, gethostbyname(%s) failed, errno = %d, errmsg = %s\n", host, h_errno, hstrerror(h_errno));
}
else
{
inet_aton(host_info->h_addr_list[0], &addr->sin_addr);
}
}
}
else
{
addr->sin_addr.s_addr = INADDR_ANY;
}
if (serv != NULL)
{
char * end_pos;
addr->sin_port = htons(strtol(serv, &end_pos, 10));
if (*end_pos != '\0')
{
serv_info = getservbyname(serv, protocol);
if (serv_info == NULL)
{
error(1, h_errno, "set_address failed, getservbyname(%s, %s) faield\n", serv, protocol);
}
else
{
addr->sin_port = serv_info->s_port;
}
}
}
}
int tcp_client(const char *host, const char *serv)
{
struct sockaddr_in server;
int fd;
const int on = 1;
set_address(host, serv, "tcp", &server);
fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0)
{
error(1, errno, "create socket failed\n");
}
if (connect(fd, (struct sockaddr *)&server, sizeof(server)) != 0)
{
error(1, errno, "connect to server failed\n");
}
return fd;
}
int main (int argc, char **argv)
{
if (argc != 3)
{
printf("usage: %s <host> <port>\n", basename(argv[0]));
exit(1);
}
char buf[1024];
int fd;
int total_write_bytes = 0, cur_write_bytes = 0;
fd = tcp_client(argv[1], argv[2]);
while (true)
{
cur_write_bytes = write(fd, buf, sizeof(buf));
if (cur_write_bytes <= 0)
{
break;
}
total_write_bytes += cur_write_bytes;
printf("total_write_bytes = %d, curr_write_bytes = %d\n", total_write_bytes, cur_write_bytes);
}
return 0;
}
server code:
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <netdb.h>
#include <stdarg.h>
#include <errno.h>
void error(int status, int err, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
if (err != 0)
{
fprintf(stderr, "errno = %d, errmsg = %s\n", err, strerror(err));
}
if (status != 0)
{
exit(err);
}
}
int set_address(const char *host, const char *serv, const char *protocol, sockaddr_in *addr)
{
struct hostent *host_info;
struct servent *serv_info;
memset(addr, 0, sizeof(sockaddr_in));
addr->sin_family = AF_INET;
if (host != NULL)
{
if (inet_aton(host, &addr->sin_addr) != 0)
{
host_info = gethostbyname(host);
if (host_info == NULL)
{
error(1, h_errno, "set_address failed, gethostbyname(%s) failed, errno = %d, errmsg = %s\n", host, h_errno, hstrerror(h_errno));
}
else
{
inet_aton(host_info->h_addr_list[0], &addr->sin_addr);
}
}
}
else
{
addr->sin_addr.s_addr = INADDR_ANY;
}
if (serv != NULL)
{
char * end_pos;
addr->sin_port = htons(strtol(serv, &end_pos, 10));
if (*end_pos != '\0')
{
serv_info = getservbyname(serv, protocol);
if (serv_info == NULL)
{
error(1, h_errno, "set_address failed, getservbyname(%s, %s) faield\n", serv, protocol);
}
else
{
addr->sin_port = serv_info->s_port;
}
}
}
}
int tcp_server(const char *host, const char *serv)
{
struct sockaddr_in local;
int fd;
const int on = 1;
set_address(host, serv, "tcp", &local);
fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0)
{
error(1, errno, "create socket failed");
}
if (bind(fd, (sockaddr *)&local, sizeof(local)) != 0)
{
error(1, errno, "bind to port %s:%s failed\n", host, serv);
}
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) != 0)
{
error(1, errno, "set SO_REUSEADDR failed\n");
}
if (listen(fd, 100) != 0)
{
error(1, errno, "listen on %s:%s failed\n", host, serv);
}
return fd;
}
int main (int argc, char **argv)
{
if (argc != 3)
{
printf("usage: %s <host> <port>\n", basename(argv[0]));
exit(1);
}
int listen_fd, fd;
struct sockaddr_in addr;
socklen_t len;
listen_fd = tcp_server(argv[1], argv[2]);
fd = accept(listen_fd, (struct sockaddr *)&addr, &len);
if (fd < 0)
{
error(1, errno, "accept an connection failed\n");
}
while (true)
{
sleep(5);
}
return 0;
}
这是结果:
标准输出结果: standard output
网络统计结果: netstat result
tcpdump 结果:
14:17:16.633105 IP localhost.54393 > localhost.personal-agent: S 4282375064:4282375064(0) win 32767 14:17:16.633106 IP localhost.personal-agent > localhost.54393: S 4268411460:4268411460(0) ack 4282375065 win 32767 14:17:16.633115 IP localhost.54393 > localhost.personal-agent: . ack 1 win 8192 14:17:16.633127 IP localhost.54393 > localhost.personal-agent: P 1:1025(1024) ack 1 win 8192 14:17:16.633130 IP localhost.personal-agent > localhost.54393: . ack 1025 win 8704 14:17:16.633156 IP localhost.54393 > localhost.personal-agent: P 1025:2049(1024) ack 1 win 8192 14:17:16.633159 IP localhost.personal-agent > localhost.54393: . ack 2049 win 8704 14:17:16.633167 IP localhost.54393 > localhost.personal-agent: P 2049:3073(1024) ack 1 win 8192 14:17:16.633169 IP localhost.personal-agent > localhost.54393: . ack 3073 win 8704 14:17:16.633176 IP localhost.54393 > localhost.personal-agent: P 3073:4097(1024) ack 1 win 8192 14:17:16.633179 IP localhost.personal-agent > localhost.54393: . ack 4097 win 8704 14:17:16.633185 IP localhost.54393 > localhost.personal-agent: P 4097:5121(1024) ack 1 win 8192 14:17:16.633188 IP localhost.personal-agent > localhost.54393: . ack 5121 win 8704 14:17:16.633195 IP localhost.54393 > localhost.personal-agent: P 5121:6145(1024) ack 1 win 8192 14:17:16.633198 IP localhost.personal-agent > localhost.54393: . ack 6145 win 8704 14:17:16.633204 IP localhost.54393 > localhost.personal-agent: P 6145:7169(1024) ack 1 win 8192 14:17:16.633206 IP localhost.personal-agent > localhost.54393: . ack 7169 win 8704 14:17:16.633213 IP localhost.54393 > localhost.personal-agent: P 7169:8193(1024) ack 1 win 8192 14:17:16.633215 IP localhost.personal-agent > localhost.54393: . ack 8193 win 8704 14:17:16.633222 IP localhost.54393 > localhost.personal-agent: P 8193:9217(1024) ack 1 win 8192 14:17:16.633224 IP localhost.personal-agent > localhost.54393: . ack 9217 win 8704 14:17:16.633230 IP localhost.54393 > localhost.personal-agent: P 9217:10241(1024) ack 1 win 8192 14:17:16.633233 IP localhost.personal-agent > localhost.54393: . ack 10241 win 8704 14:17:16.633239 IP localhost.54393 > localhost.personal-agent: P 10241:11265(1024) ack 1 win 8192 14:17:16.633242 IP localhost.personal-agent > localhost.54393: . ack 11265 win 8448 14:17:16.633249 IP localhost.54393 > localhost.personal-agent: P 11265:12289(1024) ack 1 win 8192 14:17:16.633251 IP localhost.personal-agent > localhost.54393: . ack 12289 win 8192 14:17:16.633258 IP localhost.54393 > localhost.personal-agent: P 12289:13313(1024) ack 1 win 8192 14:17:16.633261 IP localhost.personal-agent > localhost.54393: . ack 13313 win 7936 14:17:16.633269 IP localhost.personal-agent > localhost.54393: . ack 14337 win 7680 14:17:16.671777 IP localhost.personal-agent > localhost.54393: . ack 31757 win 3325 14:17:16.879921 IP localhost.54393 > localhost.personal-agent: P 31757:45057(13300) ack 1 win 8192 14:17:16.959771 IP localhost.personal-agent > localhost.54393: . ack 45057 win 0 14:17:17.175771 IP localhost.54393 > localhost.personal-agent: . ack 1 win 8192 14:17:17.175786 IP localhost.personal-agent > localhost.54393: . ack 45057 win 0 14:17:17.607770 IP localhost.54393 > localhost.personal-agent: . ack 1 win 8192 14:17:17.607782 IP localhost.personal-agent > localhost.54393: . ack 45057 win 0 14:17:18.471768 IP localhost.54393 > localhost.personal-agent: . ack 1 win 8192 14:17:18.471775 IP localhost.personal-agent > localhost.54393: . ack 45057 win 0
最佳答案
已接收但发送方尚未收到确认的字节同时在发送队列和接收队列中。它们保留在发送队列中,因为在它们被确认之前,发件人必须准备好重新发送它们。它们保留在接收队列中,直到应用程序调用接收函数并将它们从队列中取出。
关于c++ - Recv-Q+Send-Q>写入字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36255275/
我有这个代码 var myChart = new FusionCharts("../themes/clean/charts/hbullet.swf", "myChartId", "400", "75
既然写入是立即进行的(复制到内核缓冲区并返回),那么使用 io_submit 进行写入有什么好处? 事实上,它 (aio/io_submit) 看起来更糟,因为您必须在堆上分配写入缓冲区并且不能使用基
我正在使用 mootool 的 Request.JSON 从 Twitter 检索推文。收到它后,我将写入目标 div 的 .innerHTML 属性。当我在本地将其作为文件进行测试时,即 file:
最终,我想将 Vertica DB 中的数据抓取到 Spark 中,训练机器学习模型,进行预测,并将这些预测存储到另一个 Vertica DB 中。 当前的问题是确定流程最后部分的瓶颈:将 Spark
我使用 WEKA 库编写了一个 Java 程序, 训练分类算法 使用经过训练的算法对未标记的数据集运行预测 将结果写入 .csv 文件 问题在于它当前写出离散分类结果(即算法猜测一行属于哪个类别)。我
背景 - 我正在考虑使用 clickonce 通过 clickonce(通过网站)部署 WinForms 应用程序。相对简单的应用程序的要素是: - 它是一个可执行文件和一个数据库文件(sqlite)
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
我正在读取 JSON 文件,取出值并进行一些更改。 基本上我向数组添加了一些值。之后我想将其写回到文件中。当我将 JSONArray 写回文件时,会被写入字符串而不是 JSONArray 对象。怎样才
我为两个应用程序使用嵌入式数据库,其中一个是服务器,另一个是客户端。客户端应用程序。可以向服务器端发送获取数据请求以检索数据并显示在表格(或其他)中。问题是这样的:如何将获取的数据保存(写入)到页面文
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
从问题得出问题:找到所有 result = new ArrayList(); for (int i = 2; i >(i%8) & 0x1) == 0) { result.add(i
由于某种原因,它没有写入 CSV。谁能明白为什么它不写吗? def main(): list_of_emails = read_email_csv() #read input file, cr
关闭。 这个问题是 not reproducible or was caused by typos 。它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能在这里出现,
我目前正在开发一个保存和加载程序,但我无法获得正确的结果。 编写程序: #include #include #define FILENAME "Save" #define COUNT 6 type
import java.io.*; public class Main2 { public static void main(String[] args) throws Exception {
我需要使用预定义位置字符串“Office”从所有日历中检索所有 iOS 事件,然后将结果写入 NSLog 和 UITextView。 到目前为止,这是我的代码: #import "ViewCo
我正在尝试将 BOOL 值写入 PFInstallation 中的列,但会不停地崩溃: - (IBAction)pushSwitch:(id)sender { NSUserDefaults *push
我以前在学校学过一些简单的数据库编程,但现在我正在尝试学习最佳实践,因为我正在编写更复杂的应用程序。写入 MySQL 数据库并不难,但我想知道让分布式应用程序写入 Amazon EC2 上的远程数据库
是否可以写回到ResourceBundle?目前我正在使用 ResourceBundle 来存储信息,在运行时使用以下内容读取信息 while(ResourceBundle.getBundle("bu
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我是一名优秀的程序员,十分优秀!