- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在实现多客户端聊天服务器,但出现以下错误。我从错误描述中得到的唯一提示是它是一个链接器错误。谁能帮我解决这个问题。
viper[1052]% gcc -Wall -o server server.c
server.c: In function âMainServerLoopâ:
server.c:45: warning: pointer targets in passing argument 3 of âacceptâ differ in signedness
/tmp/ccQIY5wn.o: In function `MainServerLoop':
server.c:(.text+0x6c): undefined reference to `ListCreate'
server.c:(.text+0xb3): undefined reference to `ListCreate'
server.c:(.text+0xcc): undefined reference to `ListAddInt'
server.c:(.text+0x25b): undefined reference to `ListAddString'
server.c:(.text+0x27d): undefined reference to `ListAddInt'
server.c:(.text+0x4bf): undefined reference to `ListDeleteInt'
server.c:(.text+0x4cc): undefined reference to `ListDeleteString'
server.c:(.text+0x6d0): undefined reference to `ListDestroy'
server.c:(.text+0x6d9): undefined reference to `ListDestroy'
collect2: ld returned 1 exit status
/*List.h */
#ifndef __RUL_LIST_H__
#define __RUL_LIST_H__
#define MAX_STRING_LEN 21
typedef struct TAG_LIST_ITEM {
union {
char strval[MAX_STRING_LEN];
int intval;
} values;
struct TAG_LIST_ITEM *next;
} ListItem;
typedef struct TAG_LIST {
ListItem *first;
ListItem *last;
unsigned int count;
} List;
List *ListCreate();
void ListDestroy(List **list);
void ListAddString(List *, const char *item);
void ListDeleteString(List *, const char *item);
void ListAddInt(List *, int item);
void ListDeleteInt(List *, int item);
#endif
/* List.h */
/*Server.c*/
#include <sys/socket.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "list.h"
const int SERVER_PORT = 13000;
const int BUFFER_SIZE = 256;
const int MAX_BUFFER_NUM = 100;
const int MAX_CLIENT_ID_LEN = MAX_STRING_LEN - 1;
void MainServerLoop(int);
void HandleClient(int connfd);
int Max(List *list);
void MainServerLoop(int sockfd)
{
char clientID[MAX_CLIENT_ID_LEN + 1];
List *listClientID = ListCreate();
int connfd, i;
struct sockaddr_in cliAddr;
int lenAddr = sizeof(cliAddr);
fd_set readfds;
FD_ZERO(&readfds);
List *listSock = ListCreate();
ListAddInt(listSock, sockfd);
FD_SET(sockfd, &readfds);
char readbuf[BUFFER_SIZE];
char writebuf[MAX_BUFFER_NUM][BUFFER_SIZE];
int numWriteBuf = 0;
while (select(Max(listSock) + 1, &readfds, NULL, NULL, NULL) >= 0)
{
if (FD_ISSET(sockfd, &readfds)) // listening socket
{
connfd = accept(sockfd, (struct sockaddr *)&cliAddr, &lenAddr);
if (connfd < 0)
{
printf("error while calling accept()\n");
exit(1);
}
int len = read(connfd, clientID, MAX_CLIENT_ID_LEN);
if (len > 0)
{
if (clientID[len] != '\0')
{
clientID[len] = '\0';
}
ListAddString(listClientID, clientID);
printf("user %s logged in\n", clientID);
ListAddInt(listSock, connfd);
printf("Number of user : %d\n", listClientID->count);
printf("Number of sock desc : %d\n" , listSock->count);
if (numWriteBuf < MAX_BUFFER_NUM)
{
sprintf(writebuf[numWriteBuf++], "User %s logged in\n", clientID);
}
}
else
{
close(connfd);
}
}
ListItem *sockItem = listSock->first;
if (sockItem) sockItem = sockItem->next; // bypass listening socket
ListItem *clientIDItem = listClientID->first;
while (sockItem != 0 && clientIDItem != 0)
{
if (FD_ISSET(sockItem->values.intval, &readfds)) // connected socket
{
int len = read(sockItem->values.intval, readbuf, BUFFER_SIZE - 1);
if (len > 0)
{
if (numWriteBuf < MAX_BUFFER_NUM)
{
readbuf[len] = '\0';
strcpy(writebuf[numWriteBuf], clientIDItem->values.strval);
strncat(writebuf[numWriteBuf], ": ", 2);
strncat(writebuf[numWriteBuf], readbuf, len);
++numWriteBuf;
}
}
else if (len == 0)
{
ListItem *nextSock = sockItem->next;
ListItem *nextClient = clientIDItem->next;
FD_CLR(sockItem->values.intval, &readfds);
close(sockItem->values.intval);
printf("user %s logged off\n", clientIDItem->values.strval);
ListDeleteInt(listSock, sockItem->values.intval);
ListDeleteString(listClientID, clientIDItem->values.strval);
printf("Number of user : %d\n", listClientID->count);
printf("Number of sock desc : %d\n" , listSock->count);
if (numWriteBuf < MAX_BUFFER_NUM)
{
sprintf(writebuf[numWriteBuf++],
"User %s logged off\n", clientIDItem->values.strval);
}
sockItem = nextSock;
clientIDItem = nextClient;
continue;
}
}
sockItem = sockItem->next;
clientIDItem = clientIDItem->next;
}
for (i = 0; i < numWriteBuf; ++i)
{
sockItem = listSock->first;
if (sockItem) sockItem = sockItem->next; // bypass listening socket
while (sockItem != 0)
{
write(sockItem->values.intval, writebuf[i], strlen(writebuf[i]) + 1);
sockItem = sockItem->next;
}
}
numWriteBuf = 0;
sockItem = listSock->first;
while (sockItem != 0)
{
FD_SET(sockItem->values.intval, &readfds);
sockItem = sockItem->next;
}
}
printf("server error %d, exit !\n",errno);
ListDestroy(&listSock);
ListDestroy(&listClientID);
}
int Max(List *listInt)
{
if (listInt->first == 0) return 0;
ListItem *curItem = listInt->first;
int max = curItem->values.intval;
curItem = curItem->next;
while (curItem != 0)
{
if (curItem->values.intval > max)
{
max = curItem->values.intval;
}
curItem = curItem->next;
}
return max;
}
int main()
{
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0)
{
printf("socket() function failed\n");
exit(1);
}
struct sockaddr_in addr;
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = htonl(INADDR_ANY);
addr.sin_port = htons(SERVER_PORT);
if (bind(sockfd, (struct sockaddr *)&addr, sizeof(addr)) < 0)
{
printf("bind() function failed\n");
exit(1);
}
if (listen(sockfd, SOMAXCONN) < 0)
{
printf("listen() function failed\n");
exit(1);
}
printf("server started, listening at port %d\n", SERVER_PORT);
MainServerLoop(sockfd);
return 0;
}
/* Server.c*/
最佳答案
您需要包含列表函数的实现,即文件 list.c
,以便编译器可以看到它:
$ gcc -Wall -o server server.c list.c
关于c - C 中的多客户端聊天服务器 - 执行问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1587881/
我想知道 gmail 聊天如何允许用户连接到 AIM,然后像登录到 AIM 一样聊天。 做起来容易吗?怎么做到的? 有人知道任何类似的开源工具吗? 谢谢! 最佳答案 如果你在谈论编程,这里是源代码示例
大家好,我正在尝试制作一个游戏,两个主持人联系起来,他们将“掷硬币”,并确定谁先出局。我决定从基本代码开始。但是我真的没有主意。 Thread server2 = new Thread(new Ser
我已经创建了一个只有 1 个房间的聊天室、私有(private)消息、审核以及一切,现在一切都很好!当我测试聊天时,我意识到在聊天中输入的所有消息都会被保存,如果有很多人使用聊天,它很快就会占用 Fi
当用户键入内容并出现软键盘时,我必须保持聊天回收器 View 的当前项目可见。目前,它覆盖了聊天,我需要回收器 View 项目与键盘一起显示。 我在 list 中尝试了这些: -android:win
我有一个服务器客户端应用程序集。 (家庭作业) 到目前为止,我已经弄清楚如何让多个客户端连接到服务器并让服务器聚合客户端发送的消息,以及如何让服务器将客户端的消息发送回客户端并将其显示在聊天 Pane
如何从我的应用程序发送/接收 Facebook 聊天消息?它是用 .Net、C# 编写的。 最佳答案 如果你可以使用 C,你就可以使用 libpurple (GPL) 和 pidgin-faceboo
我正在使用启用的 Ajax-Wcf 服务开发 Asp.Net 聊天。这是一个非常简单的聊天引擎,其中消息对话框意味着一对一(单个用户),但是我不知道如何管理(以最佳方式)通知新消息可用性。例如,假设有
我的任务是通过服务器构建一个客户端到客户端的聊天程序。客户端 A 将向服务器发送一条消息,然后服务器将消息转发给客户端 B,反之亦然。所有这一切都将同时发生,直到其中一个将其关闭。我有以下程序。 服务
我创建了一个聊天,用户可以在其中输入文本的输入字段。当他输入文本并按下发送(或输入)时,文本位于输入字段上方。像这样: 我想要的:我希望输入字段位于页面底部。我使用 position: absolut
出于个人兴趣,我尝试定义一个模拟 AI,它基于他学到的信息和互联网搜索,以便提供比系统知道的更多的细节。 我举了一个 child 的例子,当他出生时他需要学习一切,他听到了很多然后提出了一些答案。他的
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 3年前关闭。 Improve this qu
我已经开始聊天了,但我已经将用户的 ID 硬编码到 Chat.php 中。 当他们登录站点时,我的登录名将他们的电子邮件设置为 session ( $_SESSION['email']=$email;
当用户点击像 Start a viber chat with us 这样的链接时,我试图找到一种方法来开始 viber 聊天。但到目前为止我没有找到正确的URI来做到这一点。例如,我知道我可以使用 s
我是 Javascript(纯 javascript)新手,我正在尝试创建一个执行以下操作的聊天 Controller 应用程序。 用户输入内容。 有人对我的知识库进行了后调用。 服务器响应消息。 目
已关闭。这个问题是 not about programming or software development 。目前不接受答案。 这个问题似乎不是关于 a specific programming
如果用户在 x 秒/分钟内处于非事件状态,我想结束聊天,以便我们的代理不必等待聊天自行关闭。我还想在结束聊天之前将标签附加到聊天中,以便我可以看到这是由于不活动造成的。 最佳答案 此内容归功于 j
我正在此网站中构建新网站,客户需要 24/7 实时客户支持。我想在网站上集成 Skype 聊天 聊天界面应该在客户端的网站上。 最佳答案 您可以通过在网站上放置 Skype 按钮来使用它。 http:
事实上,我只是开始积极练习 swing,以便我的理论知识能派上用场:) 我已经为聊天 GUI 实现做了很多工作,但最终遇到了一些问题。所以我决定从头开始重新设计聊天 GUI,但我需要为其选择正确的组件
已关闭。这个问题是 not about programming or software development 。目前不接受答案。 这个问题似乎不是关于 a specific programming
我正在尝试进行简单的聊天,其中连接到服务器的用户发送消息,其他用户接收消息。 这是我的 html: function setupEventSource()
我是一名优秀的程序员,十分优秀!