導航:首頁 > 軟體知識 > 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語言怎麼寫通信程序相關的資料

熱點內容
蘇州哪裡有核心技術 瀏覽:452
襄陽職業技術學院附近有什麼 瀏覽:881
nba有哪些令人驚艷的數據 瀏覽:665
纖伏代理怎麼樣 瀏覽:373
如何查看自己定向傭金產品 瀏覽:122
簡歷配偶信息怎麼寫 瀏覽:564
商貿代理怎麼做 瀏覽:63
hmi模具加工有哪些技術 瀏覽:55
完美蘆薈膠怎麼代理 瀏覽:439
合約交易避開8點能省多少手續費 瀏覽:448
人類目前缺什麼技術 瀏覽:431
警察與程序員哪個好 瀏覽:708
夢見臨時市場在哪裡 瀏覽:420
交易所流水是什麼 瀏覽:153
小程序代理怎麼找客 瀏覽:915
學電子技術專業的筆記本要什麼配置 瀏覽:809
特效生發產品有哪些 瀏覽:725
國產哪些技術不如國外 瀏覽:851
朝鮮生產什麼農產品 瀏覽:193
掛什麼號可以查到違章信息 瀏覽:435