- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要有关我正在编写的程序的帮助。该程序应该有 3 个客户端通过套接字连接到它。
我正在寻找方向。
如何等待服务器程序连接到所有 3 个客户端。
之后我如何区分连接。即写入客户端 1 但不写入客户端 2,或者写入所有连接的客户端。
如何使用 fork()。
我能够编写服务器和客户端程序,但我在考虑多个客户端的解决方案时遇到困难。
如果有人能帮助我解决这个问题,那就太好了。非常感谢。
编辑:到目前为止,我让服务器程序等待 3 个客户端连接。所有 3 个客户端均已完成,但服务器程序显示“从套接字读取错误:错误的文件描述符”
我的客户端代码如下所示:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
void error(const char *msg)
{
perror(msg);
exit(0);
}
int main(int argc, char *argv[])
{
char router_no[256] = "0";
int cost_to_router_0 = 0;
int cost_to_router_1 = 1;
int cost_to_router_2 = 3;
int cost_to_router_3 = 7;
printf("\n\n");
printf("Initial table for Router 0(Client)\n");
printf("===================================================\n");
printf("Destination Router |Link Cost |\n");
printf("===================================================\n");
printf("Router 0 |%d |\n", cost_to_router_0);
printf("Router 1 |%d |\n", cost_to_router_1);
printf("Router 2 |%d |\n", cost_to_router_2);
printf("Router 3 |%d |\n", cost_to_router_3);
printf("===================================================\n");
int sockfd, portno, n;
struct sockaddr_in serv_addr;
struct hostent *server;
char buffer[256];
if (argc < 3) {
fprintf(stderr,"usage %s hostname port\n", argv[0]);
exit(0);
}
portno = atoi(argv[2]);
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0)
error("ERROR opening socket");
server = gethostbyname(argv[1]);
if (server == NULL) {
fprintf(stderr,"ERROR, no such host\n");
exit(0);
}
bzero((char *) &serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
bcopy((char *)server->h_addr,
(char *)&serv_addr.sin_addr.s_addr,
server->h_length);
serv_addr.sin_port = htons(portno);
if (connect(sockfd,(struct sockaddr *) &serv_addr,sizeof(serv_addr)) < 0)
error("ERROR connecting");
printf("\n");
printf("Clients Router Number: %s \n", router_no);
printf("Cost to Router 0(Client): %d \n", cost_to_router_0);
printf("Cost to Router 1(Server): %d \n", cost_to_router_1);
printf("Cost to Router 2: %d \n", cost_to_router_2);
printf("Cost to Router 3: %d \n", cost_to_router_3);
printf("\n");
//printf("Please enter the message: ");
//bzero(buffer,256);
//fgets(buffer,255,stdin);
// Send Router Number
n = write(sockfd,router_no,strlen(router_no));
if (n < 0)
error("ERROR writing to socket");
// Send Cost of Router 0 to other Routers
n = write(sockfd, &cost_to_router_1, sizeof(cost_to_router_1));
n = write(sockfd, &cost_to_router_2, sizeof(cost_to_router_2));
n = write(sockfd, &cost_to_router_3, sizeof(cost_to_router_3));
if (n < 0)
error("ERROR writing to socket");
int cost_server_to_router_0 = 0;
int cost_server_to_router_1 = 0;
int cost_server_to_router_2 = 0;
int cost_server_to_router_3 = 0;
bzero(buffer,256);
n = read(sockfd, &cost_server_to_router_0, sizeof(cost_server_to_router_0));
n = read(sockfd, &cost_server_to_router_0, sizeof(cost_server_to_router_1));
n = read(sockfd, &cost_server_to_router_2, sizeof(cost_server_to_router_2));
n = read(sockfd, &cost_server_to_router_3, sizeof(cost_server_to_router_3));
printf("Costs of Router 1(Server) to other Routers\n");
printf("Cost to Router 0: %d \n", cost_server_to_router_0);
printf("Cost to Router 1: %d \n", cost_server_to_router_1);
printf("Cost to Router 2: %d \n", cost_server_to_router_2);
printf("Cost to Router 3: %d \n", cost_server_to_router_3);
bzero(buffer,256);
n = read(sockfd,buffer,255);
if ( cost_to_router_1 + cost_server_to_router_0 < cost_to_router_0)
cost_to_router_0 = cost_to_router_1 + cost_server_to_router_0;
if ( cost_to_router_1 + cost_server_to_router_1 < cost_to_router_1)
cost_to_router_1 = cost_to_router_1 + cost_server_to_router_1;
if ( cost_to_router_1 + cost_server_to_router_2 < cost_to_router_2)
cost_to_router_2 = cost_to_router_1 + cost_server_to_router_2;
if ( cost_to_router_1 + cost_server_to_router_3 < cost_to_router_3)
cost_to_router_3 = cost_to_router_1 + cost_server_to_router_3;
printf("\n\n");
printf("Updated table for Router 0(Client)\n");
printf("===================================================\n");
printf("Destination Router |Link Cost |\n");
printf("===================================================\n");
printf("Router 0 |%d |\n", cost_to_router_0);
printf("Router 1 |%d |\n", cost_to_router_1);
printf("Router 2 |%d |\n", cost_to_router_2);
printf("Router 3 |%d |\n", cost_to_router_3);
printf("===================================================\n");
if (n < 0)
error("ERROR reading from socket");
printf("%s\n",buffer);
close(sockfd);
return 0;
}
请记住,这是来 self 使用找到的教程编写的单个处理客户端程序。我需要能够修改它以连接并保持与多个客户端的连接
我的服务器代码如下
/* A simple server in the internet domain using TCP
The port number is passed as an argument */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
void error(const char *msg)
{
perror(msg);
exit(1);
}
int main(int argc, char *argv[])
{
int number_of_clients = 0;
char router_no[256] = "1";
int cost_to_router_0 = 1;
int cost_to_router_1 = 0;
int cost_to_router_2 = 1;
int cost_to_router_3 = 10000; // This is set to 10,000 because there is not link
// between router 1 to router 3 and/but infinity
// is not a real number.
int sockfd, newsockfd, portno;
socklen_t clilen;
char buffer[256];
struct sockaddr_in serv_addr, cli_addr;
int n;
if (argc < 2) {
fprintf(stderr,"ERROR, no port provided\n");
exit(1);
}
// Socket is opened
sockfd = socket(AF_INET, SOCK_STREAM, 0);
// Displays error if socket opening was not suscessful
if (sockfd < 0)
error("ERROR opening socket");
// Sets serv_addr to zeros
bzero((char *) &serv_addr, sizeof(serv_addr));
// Sets port number to argument passed in call
portno = atoi(argv[1]);
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
serv_addr.sin_port = htons(portno);
// Biding socket to an adress
if (bind(sockfd, (struct sockaddr *) &serv_addr,
sizeof(serv_addr)) < 0)
error("ERROR on binding");
listen(sockfd,5);
clilen = sizeof(cli_addr);
while (1)// start of while
{
while (number_of_clients < 3)
{
newsockfd = accept(sockfd,
(struct sockaddr *) &cli_addr,
&clilen);
if (newsockfd < 0)
error("ERROR on accept");
else number_of_clients ++;
}
bzero(buffer,256);
n = read(newsockfd,buffer,255);
if (n < 0) error("ERROR reading from socket");
printf("Client Router's Number: %s\n", buffer);
int cost_client_to_router_1 = 0;
int cost_client_to_router_2 = 0;
int cost_client_to_router_3 = 0;
bzero(buffer,256);
n = read(newsockfd, &cost_client_to_router_1, sizeof(cost_client_to_router_1));
n = read(newsockfd, &cost_client_to_router_2, sizeof(cost_client_to_router_2));
n = read(newsockfd, &cost_client_to_router_3, sizeof(cost_client_to_router_3));
if (n < 0) error("Error reading from socket");
printf("Cost from client to router 1: %d \n", cost_client_to_router_1);
printf("Cost from client to router 2: %d \n", cost_client_to_router_2);
printf("Cost from client to router 3: %d \n", cost_client_to_router_3);
n = write(newsockfd, &cost_to_router_0, sizeof(cost_to_router_0));
n = write(newsockfd, &cost_to_router_0, sizeof(cost_to_router_0));
n = write(newsockfd, &cost_to_router_2, sizeof(cost_to_router_2));
n = write(newsockfd, &cost_to_router_3, sizeof(cost_to_router_3));
if (n < 0) error("ERROR writing to socket");
close(newsockfd);
} //end of while
close(sockfd);
return 0;
}
服务器代码无法正常工作,因为我缺少对 fork() 和 select() 的理解
最佳答案
How can I wait for for the server program to connect to all 3 clients.
通过调用 accept
三次。
After how can I differentiate between connections. i.e. write to client 1 but not 2 or maybe write to all clients connects.
它们都有由 accept
返回的不同文件描述符。您当前的服务器代码会忘记前两个(通过覆盖 newsockfd
),并且仅将最后一个存储在 newsockfd
中。出于显而易见的原因,不要这样做。
How to use fork().
这不够具体,无法给出答案。
All 3 clients finish but the server program shows a "error reading from socket:bad file descriptor"
这是因为服务器关闭了最后一个客户端的文件描述符(记住它忘记了前两个),然后不等待另一个客户端(因为 number_of_clients
已经是 3),然后尝试读取从它刚刚关闭的文件描述符中。
关于c - 套接字编程: How to handle multiple clients in c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41008512/
我想使用foreach 来等待线程终止。但是,出现以下错误,没有实现。请告诉我。 cannot move out of `*handle` which is behind a shared refer
如果在TypoScript中未配置给定的typeNum,则TYPO3将抛出Exception/CMS/1294587217。 背景:从另一个系统迁移到TYPO3后,我们遇到了许多此类异常,因为在那里使
我需要一个带有 2 个 handle 的 slider ,一个可拖动,另一个固定。我正在使用 Jquery UI slider 。这是我到目前为止尝试过的:http://jsfiddle.net/8K
给定文件的HANDLE(例如C:\\FolderA\\file.txt),我想要一个函数,该函数会将HANDLE返回到包含的目录(在前面的示例中,它将是C:\\FolderA的HANDLE)。例如:
我想通过Automic在Unix中检查文件。如果该文件不存在,则应切换主机并检查文件是否存在。 问题是,我现在不执行错误处理。 每当脚本对象正在处理并且找不到文件时,skript都会中止。我在skri
鉴于: fruitid('Apple', 'Granny Smith', 1). fruitid('Apple', 'Cox', 2). fruitid('Pear', 'Bartlett', 3).
我有一个基于Spring的Wicket应用程序。 有一个池化的数据源bean。 现在,当MySQL死了时,我得到了带有堆栈跟踪的默认Wicket错误页面。 我想处理这种情况,只允许某些页面完全显示(静
我希望能够一次查询多个句柄,其中表格具有相同的格式,例如: 句柄:8000,8001,8003表:foo 想要做这样的事情: x:hopen `8000`8001`8003 x select from
我对在Swift 3中引发自定义异常有些困惑。 在C++中,我可以执行此操作以立即停止方法中的进程,抛出错误并进行处理,而无需进一步进行操作。 void foo() { try {
我一直在阅读MSDN开发人员COM指南。但是this page上的代码令人困惑。在此处复制: The following code sample shows the recommended way o
我有一个计划的批处理文件每天都会启动的过程。如果有错误,我需要内置错误处理才能重启进程。所有这些在大多数情况下都有效,但是我每个月都会收到一次超时错误,所以这是不可避免的。该进程不会将错误级别输出到b
我正在尝试从 chartlyrics API 获取歌词。我编写了一个可以运行但不能在循环内运行的 R 函数。我的脚本是: library(httr) library(RCurl) library(XM
在libuv事件循环中调用prepare handle callback和check handle callback的原因是什么? 最佳答案 I/O 操作发生在这两者之间,因此您可能希望在阻塞 I/O
我正在尝试在 R 中安装 BTYplus 包。 devtools::install_github("mplatzer/BTYDplus", dependencies=TRUE) library(BTY
我有一个Arduino,可以使用pySerialTransfer库通过串行与Mac正常通信,并且可以运行数小时。然后是某种形式的串行中断-尽管一夜间发生时我一直无法确定原因,但只要从笔记本电脑上拔下A
我是hooks和async/await的新手。我正在尝试处理Axios调用中的错误,并且不确定如何使用then/catch或try/catch处理我的API调用中的错误。 在基于类的React中,我将
我正在尝试向脚本中添加一些内容,以便让我知道我复制的文件是否已被完全复制。 基本上,我要压缩一堆文件,然后将它们发送到网络上的映射驱动器。然后,一旦文件被成功复制,我将脚本删除原始位置的文件。该脚本可
我有一个圆形 slider ,其中绘制了一条贝塞尔弧,一个圆弧在 slider 的起点和终点有两个 handle ,圆弧是在圆形 slider 中绘制的。 借助开始和结束 handle ,我可以沿着圆
删除 NULL 指针是安全的。 int* p = NULL; delete p; // ok, secure 句柄是什么? HANDLE h = NULL; CloseHandle(h
如果您没有在 dojo.connect 期间返回的“句柄”,您如何删除 dojo 连接事件? 我的示例涉及将一组事件动态分配给一组对象。 (为简单起见,事件是 onclick 和 ondblclick
我是一名优秀的程序员,十分优秀!