當前位置:首頁 » 編程軟體 » socket編程聊天室

socket編程聊天室

發布時間: 2023-06-26 06:38:26

⑴ 如何用C語言編寫一個簡單的聊天室程序

這樣:

#include <stdlib.h>

#include <stdio.h>

#include <errno.h>

#include <string.h>

#include <unistd.h>

#include <netdb.h>

#include <sys/socket.h>

#include <netinet/in.h>

#include <sys/types.h>

#include <arpa/inet.h>

#include <pthread.h>

#define MAXLINE 100;

void *threadsend(void *vargp);

void *threadrecv(void *vargp);

int main()

{

int *clientfdp;

clientfdp = (int *)malloc(sizeof(int));

*clientfdp = socket(AF_INET,SOCK_STREAM,0);

struct sockaddr_in serveraddr;

struct hostent *hp;

bzero((char *)&serveraddr,sizeof(serveraddr));

serveraddr.sin_family = AF_INET;

serveraddr.sin_port = htons(15636);

serveraddr.sin_addr.s_addr = inet_addr("127.0.0.1");

if(connect(*clientfdp,(struct sockaddr *)&serveraddr,sizeof(serveraddr)) < 0){

printf("connect error ");

exit(1);

}

pthread_t tid1,tid2;

printf("connected ");

while(1){

pthread_create(&tid1,NULL,threadsend,clientfdp);

pthread_create(&tid2,NULL,threadrecv,clientfdp);

}

return EXIT_SUCCESS;

}

void *threadsend(void * vargp)

{

//pthread_t tid2;

int connfd = *((int *)vargp);

int idata;

char temp[100];

while(1){

//printf("me: ");

fgets(temp,100,stdin);

send(connfd,temp,100,0);

printf(" client send OK ");

}

printf("client send ");

return NULL;

}

void *threadrecv(void *vargp)

{

char temp[100];

int connfd = *((int *)vargp);

while(1){

int idata = 0;

idata = recv(connfd,temp,100,0);

if(idata > 0){

printf("server : %s ",temp);

}

}

return NULL;

}

(1)socket編程聊天室擴展閱讀:

注意事項

linux編譯多線程代碼時,shell提示找不到 pthread_create函數,原因是 pthread.h不是linux系統默認載入的庫文件,應該使用類似如下gcc命令進行編譯:

gcc echoserver.c -lpthread -o echoserver

只要注意 -lpthread參數就可以了。

熱點內容
安卓手機如何調用外置攝像頭 發布:2025-09-14 09:38:58 瀏覽:852
分布式爬蟲python 發布:2025-09-14 09:35:11 瀏覽:101
搭建gta伺服器 發布:2025-09-14 09:29:38 瀏覽:929
騰訊雲php 發布:2025-09-14 09:28:40 瀏覽:433
visualstudio編譯器在哪個位置 發布:2025-09-14 09:26:29 瀏覽:746
電視設了兒童版密碼多少 發布:2025-09-14 09:21:46 瀏覽:372
復制另一個資料庫的表 發布:2025-09-14 09:10:55 瀏覽:206
spotify緩存 發布:2025-09-14 09:00:07 瀏覽:613
硬殼編程下載 發布:2025-09-14 08:02:56 瀏覽:737
什麼能防止安卓軟體自啟 發布:2025-09-14 07:48:54 瀏覽:991