Linux 域通信
服务器端
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/un.h>
#include <errno.h> // 包含 errno.h 头文件
int main() {
struct sockaddr_un myaddr;
int listenfd, connfd;
char buf[200];
ssize_t len;
// 创建Unix域套接字
listenfd = socket(PF_UNIX, SOCK_STREAM, 0);
if (listenfd < 0) {
perror("socket");
exit(1);
}
// 绑定套接字到地址
bzero(&myaddr, sizeof(myaddr));
myaddr.sun_family = AF_UNIX;
strcpy(myaddr.sun_path, "vivo50");
if (unlink(myaddr.sun_path) < 0 && errno != ENOENT) {
perror("unlink");
close(listenfd);
exit(1);
}
if (bind(listenfd, (struct sockaddr *)&myaddr, sizeof(myaddr)) < 0) {
perror("bind");
close(listenfd);
exit(1);
}
// 监听连接
if (listen(listenfd, 5) < 0) {
perror("listen");
close(listenfd);
exit(1);
}
// 接受连接
printf("等待连接...\n");
connfd = accept(listenfd, NULL, NULL);
if (connfd < 0) {
perror("accept");
close(listenfd);
exit(1);
}
// 通信循环
while (1) {
bzero(buf, sizeof(buf));
len = read(connfd, buf, sizeof(buf) - 1); // 读取数据
if (len <= 0) {
printf("客户端断开连接。\n");
break;
}
buf[len] = '\0'; // 确保字符串以NULL结尾
printf("客户端: %s\n", buf);
if (strncmp(buf, "quit", strlen("quit")) == 0) {
break;
}
// 回显客户端发送的数据
write(connfd, buf, len); // 发送数据
}
// 关闭套接字
close(connfd);
close(listenfd);
unlink(myaddr.sun_path); // 删除套接字文件
return 0;
}
客户端
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/un.h>
#include <errno.h> // 包含 errno.h 头文件
#include <pthread.h>
void *RcvMsg(void *arg) {
int sockfd = *(int *)arg;
char buf[200];
while (1) {
bzero(buf, sizeof(buf));
ssize_t len = recv(sockfd, buf, sizeof(buf) - 1, 0); // 接收消息
if (len <= 0) {
printf("服务器断开连接。\n");
close(sockfd);
break;
}
buf[len] = '\0'; // 确保字符串以NULL结尾
printf("服务器: %s\n", buf);
if (strncmp(buf, "quit", strlen("quit")) == 0) {
break;
}
}
return NULL;
}
int main() {
struct sockaddr_un myaddr;
char buf[200];
int sockfd;
// 创建Unix域套接字
sockfd = socket(PF_UNIX, SOCK_STREAM, 0);
if (sockfd < 0) {
perror("socket");
exit(1);
}
// 连接到服务器
bzero(&myaddr, sizeof(myaddr));
myaddr.sun_family = PF_UNIX;
strcpy(myaddr.sun_path, "vivo50");
if (connect(sockfd, (struct sockaddr *)&myaddr, sizeof(myaddr)) < 0) {
perror("connect");
close(sockfd);
exit(1);
}
// 创建接收消息的线程
pthread_t thread1;
if (pthread_create(&thread1, NULL, RcvMsg, &sockfd) != 0) {
perror("pthread_create");
close(sockfd);
exit(1);
}
if (pthread_detach(thread1) != 0) {
perror("pthread_detach");
close(sockfd);
exit(1);
}
// 与服务器通信
while (1) {
bzero(buf, sizeof(buf));
printf("请输入数据: ");
if (fgets(buf, sizeof(buf), stdin) == NULL) {
break;
}
send(sockfd, buf, strlen(buf), 0);
if (strncmp(buf, "quit", strlen("quit")) == 0) {
break;
}
}
// 断开连接
close(sockfd);
return 0;
}
原文地址:https://blog.csdn.net/m0_58341340/article/details/143834022
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!