- 论坛徽章:
- 0
|
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <sys/un.h>
#include <unistd.h>
#include <sys/wait.h>
#define LEN 64
int main()
{
unsigned char data[LEN];
int server_sockfd,client_sockfd;
int server_len,client_len,num;
struct sockaddr_un server_address;
struct sockaddr_un client_address;
unlink("server_socket");
if(server_sockfd = socket(AF_UNIX,SOCK_STREAM,0)<0)
{
printf("creat error\n");
return 1;
}
server_address.sun_family = AF_UNIX;
strcpy(server_address.sun_path,"mysocket");
server_len = sizeof(server_address);
if(bind(server_sockfd,(struct sockaddr*)&server_address,server_len)==-1)
{
printf("bind error\n");
return 1;
}
小弟不明白为什么上面程序运行到bind的时候会出现bind error,请各位帮忙指点一下,谢谢 |
|