導航:首頁 > 軟體知識 > c語言怎麼寫通信程序

c語言怎麼寫通信程序

發布時間:2023-10-22 00:53:15

㈠ 如何用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)c語言怎麼寫通信程序擴展閱讀:

注意事項

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

gcc echoserver.c -lpthread -o echoserver

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

閱讀全文

與c語言怎麼寫通信程序相關的資料

熱點內容
去做程序員該學什麼專業 瀏覽:24
華為無數據線怎麼刷機 瀏覽:228
上海黃金交易所得黃金怎麼樣 瀏覽:947
怎麼看程序的源代碼 瀏覽:508
騰訊公司哪些產品好 瀏覽:746
微信怎麼找添加好友信息 瀏覽:843
有工人怎麼找代理 瀏覽:210
程序員上下班途中都在想什麼 瀏覽:845
深圳坪山第三職業技術學校在哪裡 瀏覽:502
美信代理怎麼取消 瀏覽:837
龍紋可以用來做什麼產品 瀏覽:188
技術交底現場不簽字怎麼處理 瀏覽:60
3年級信息技術學到了什麼 瀏覽:625
什麼電子產品賺錢 瀏覽:380
小皙面膜怎麼做代理 瀏覽:997
如何降低信息系統風險 瀏覽:704
北京市場邊牧哪裡賣 瀏覽:666
如何看工廠信息和產品 瀏覽:136
電子產品注冊需要什麼 瀏覽:212
移動電商賣什麼產品好 瀏覽:206