- 论坛徽章:
- 0
|
服务器端:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>
#include <errno.h>
int main(void)
{
struct sockaddr_un remote_addr;
int send_fd;
char *buf = "one world,one dream";
int t = 0;
memset(&remote_addr,0,sizeof(remote_addr));
if((send_fd = socket(AF_LOCAL,SOCK_DGRAM,0))!= -1)
{
remote_addr.sun_family = AF_LOCAL;
strcpy(remote_addr.sun_path, "/home/code/CLIENT");
chmod(remote_addr.sun_path, 0777);
if (unlink(remote_addr.sun_path) != 0)
{
perror("unlink");
}
if(t = (sendto(send_fd,buf,strlen(buf),MSG_DONTWAIT,
(struct sockaddr *)&remote_addr, sizeof(remote_addr)))!= -1)
{
printf("sendto : bytes = %d\n",t);
}
else
{
printf("sendto : error i = %d \n",i);
}
close(send_fd);
}
else
{
printf("failed\n");
}
return 0;
}
客户端
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>
#include <errno.h>
int main(void)
{
struct sockaddr_un local_addr,remote_addr;
int recv_fd;
socklen_t fromlen = sizeof(struct sockaddr);
char buf[256] = {0};
memset(&local_addr,0,sizeof(local_addr));
memset(&remote_addr,0,sizeof(remote_addr));
fromlen = sizeof(remote_addr);
if((recv_fd = socket(AF_LOCAL,SOCK_DGRAM,0))!= -1)
{
local_addr.sun_family = AF_LOCAL;
strcpy(local_addr.sun_path, "/home/zhubo/code/3/CLIENT");
printf("create socket\n");
unlink(local_addr.sun_path);
/*remote_addr.sun_family = AF_LOCAL;
strcpy(remote_addr.sun_path,"/home/zhubo/code/3/CLIENT");*/
printf("link addr\n");
if (bind(recv_fd, (struct sockaddr *)&local_addr, sizeof(local_addr)) != -1)
{
chmod(local_addr.sun_path, 0777);
printf("bind addr\n");
if(recvfrom(recv_fd,buf,sizeof(buf),0,
(struct sockaddr *)&remote_addr, &fromlen)!= -1)
{
printf("path: %s\n", remote_addr.sun_path);
printf("buff: %s\n", buf);
}
}
close(recv_fd);
}
else
{
printf("failed\n");
}
return 0;
}
客户端可以正常工作,但是为什么服务器端怎么老是发送失败? |
|