- 论坛徽章:
- 0
|
/* Make the necessary includes and set up the variables. */
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#define LENTH 1024
int main()
{
int sockfd;
int len;
struct sockaddr_in address;
int result;
char buff[LENTH],file[20];
int fd;
/* Create a socket for the client. */
sockfd = socket(AF_INET, SOCK_STREAM, 0);
/* Name the socket, as agreed with the server. */
address.sin_family = AF_INET;
address.sin_addr.s_addr = inet_addr("127.0.0.1");
address.sin_port = htons(9734);
len = sizeof(address);
/* Now connect our socket to the server's socket. */
result = connect(sockfd, (struct sockaddr *)&address, len);
if(result == -1) {
perror("oops: client3");
exit(1);
}
scanf("%s",file);
/* We can now read/write via sockfd. */
/*
if(fd=open(file,O_RDONLY)<0)
{
perror("open");
exit(0);
}
*/
fd=open(file,O_RDONLY);
write(sockfd, file, strlen(file)+1);
printf("%s\n",file);
//printf("fdsfgdsgds");
while(read(fd,buff,sizeof(buff))>0)
{
printf("%s\n",buff);
/*{
write(sockfd, buff, LENTH);
printf("%s\n",buff);
}*/
write(sockfd, buff, LENTH);
}
printf("send finish!!\n");
close(sockfd);
exit(0);
}
这是通过套接字传送一个文本文件,在问价打开的时候如果使用
if(fd=open(file,O_RDONLY)<0)
{
perror("open");
exit(0);
}
运行就不成功,使用下面的语句就可以
fd=open(file,O_RDONLY);
不加判断条件。
这是为什么? |
|