- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建服务器客户端代码。客户端可以从服务器下载任何文件,但我对二进制文件有问题
这是我的客户端代码:
#include <stdio.h>
#include<sys/types.h>
#include<sys/socket.h>
#include<sys/time.h>
#include<netinet/in.h>
#include<arpa/inet.h>
#include<string.h>
#include<errno.h>
#include<stdlib.h>
#include<fcntl.h>
#define Max_len 1025
//-------------------------- to replay for pecific secret simpol 0x55
char secret(char * str)
{
char sub=0x55;
if(sub==str[0])
{
sub=0xAA;
return sub;
}
else
{
printf("server does not give the right secret code\n");
exit(0);
}
}
//-------------------------warraper function for perror
void error(char * str)
{
perror(str);
exit(0);
}
int main ( int nof_arg, char **argv)
{
//------------------------define data types
int sockfd,number,portno,val=0,fil_fd; //to store the file descreptore of socket
char rec_lin [Max_len],f_name[20]="\0",car; // act as buffer
struct sockaddr_in servaddr;
char * read_one;
FILE * file_ptr; //------------------------ welcome message identife the writer
printf("\n\t Welcom the client \n\t Name: Eftikhar Emad \n\t ID: 20100175003\n\tsection #1: 9:15-10:15\n\n");
//------------------------ prepair the client to start connection
if (nof_arg < 3) //check the number of entered arregument
error("you need the IP and port number to connect please check them again\n");
portno=atoi(argv[2]); // convert the port from string to int
if((portno<=22000) || (portno>=23000)) //check to see if the port numberif valiled
error("your port number is out of range please try agin start with 22XXX\n");
if((sockfd=socket(AF_INET,SOCK_STREAM,0))<0) //socket creation
error("Socket creation error");
bzero(&servaddr,sizeof(servaddr)); //static define for the server
servaddr.sin_family=AF_INET;
servaddr.sin_port = htons(portno);
if(inet_pton(AF_INET,argv[1],&servaddr.sin_addr)<=0)//it can be used to check
error("inet_pton error ");
if((connect(sockfd,(struct sockaddr *)&servaddr,sizeof(servaddr)))<0)//connection
error("connect error");
//------------------------------------start define the server valited
bzero(rec_lin,sizeof(rec_lin));
read(sockfd,rec_lin ,sizeof(rec_lin));
printf("received the byte 0x55 from the server\n"); //will readonly one char
car=secret(rec_lin);
printf("Sending ack 0xAA to the server\n");
bzero(rec_lin,sizeof(rec_lin));
snprintf(rec_lin,sizeof(rec_lin),"%c",car);
write(sockfd,rec_lin,1); //send 0xAA if 0x55
//-------------------------------------print the list from server
read(sockfd,rec_lin,sizeof(rec_lin));
while(rec_lin[0]!= '\0')
{
read(sockfd,rec_lin,sizeof(rec_lin));
printf("%s\n",rec_lin);
}
//-------------------------after know the server start to ask and send file name
printf("enter file name to download : ");
gets(f_name); //rad file name from user
snprintf(rec_lin,sizeof(rec_lin),"%s",f_name);
write(sockfd,rec_lin,sizeof(rec_lin)); //send the file name to server
bzero(rec_lin,sizeof(rec_lin));
//--------------------------------------check server reply 0/1 for finding or not
read(sockfd,rec_lin,/*sizeof(rec_lin)*/1);
int p;
if(rec_lin[0]==0x31) //if file found inform the user,start,ending msg
{ //no creation to file unless it found on server
printf("Received 1 from server %s exists\nStart downloading the file\n",f_name);
fil_fd=open(f_name,O_RDWR| O_CREAT, S_IRUSR | S_IRGRP | S_IROTH);
while((val=read(sockfd,rec_lin,sizeof(rec_lin)-1))>0)
{
p=strlen(rec_lin);
// rec_lin[val]='\0';
write(fil_fd,rec_lin,/*sizeof(rec_lin)*/p+1);
bzero(rec_lin,1049);
}
printf("Done Downloadng the file.......exit\n\n");
close(fil_fd);
}
else //if file not found terminate the connection
{
printf("file not found get ... connection will closed\n\n");
}
// -----------------------------terminate connection if it Done in the right way
close(sockfd);
return 0;
}
这是我的服务器代码:
#include<stdio.h>
#include<errno.h>
#include<arpa/inet.h>
#include<string.h>
#include<netinet/in.h>
#include<sys/types.h>
#include<sys/socket.h>
#include<stdlib.h>
#include<fcntl.h>
#include<netdb.h>
#include<dirent.h>
#define Max_len 1025
void error (char * str)
{
perror(str);
exit(0);
}
int main (int argc, char ** arg)
{
/ /------------------------- define data type
int listenfd,connfd,clilen,portno,fil_fd,n;
char buff[Max_len], *str,f_name[100],car=0xAA,h_IP[30],h_P[20];
struct sockaddr_in servaddr,cliaddr;
DIR * ddir;
struct dirent * ndir;
//------------------------- socket intinalizing
printf("\n\t Welcom the server \n\t Name: Eftikhar Emad \n\t ID: 20100175003\n\t section #1: 9:15-10:15\n");
if(argc != 2) //of user forget to insert the port number
error("missing port number to complet establishment\n");
portno=atoi(arg[1]); //convert the port to int and check if it was within the rang
if((portno<=22000) || (portno>=23000))
error("your port number not valid .... pleas insert one in reng (22000,22999)\n");
listenfd=socket(AF_INET,SOCK_STREAM,0); //creat the listing socket
bzero((char *)&servaddr ,sizeof(servaddr));
servaddr.sin_family=AF_INET; //Ipv4
servaddr.sin_addr.s_addr=htonl(INADDR_ANY);
servaddr.sin_port=htons(portno);
bind(listenfd,(struct sockaddr *)&servaddr,sizeof(servaddr));//bind the liten socket to specific port
listen(listenfd,5);
//-------------------------- server start to wait to handle requests
for(;;)
{
printf("server wait for connections\n");
bzero((char *)&cliaddr ,sizeof(cliaddr)); //clear the previus client information
clilen=sizeof(cliaddr); //client informaton container
connfd=accept(listenfd,(struct sockaddr *)&cliaddr,&clilen);
int f=fork(); //start of fork()
if(f==0)
{
close(listenfd);
if(connfd<0)
error("error in accept this connection\n");
//--------------------------------------- //start the secret hand chacking
bzero(buff,sizeof(buff));
getnameinfo((struct sockaddr *)&cliaddr,sizeof(cliaddr),h_IP,sizeof(h_IP),h_P,sizeof(h_P),0);
printf("Sending byte 0x55 to client with IP %s and port of %s\n",h_IP,h_P);
//get the IP AND port# of the client
snprintf(buff,sizeof(buff),"%c",0x55);
write(connfd,buff,sizeof(buff));
//--------------------------------------- //read file name
car=0xAA;
read(connfd,buff,sizeof(buff));
printf("received 0XAA from client \n");
if(car==buff[0])
{
//------- send the list to the client
snprintf(buff,sizeof(buff),"select file to download it\n");
write(connfd,buff,sizeof(buff));
ddir=opendir(".");
if(ddir==NULL)
{printf("error\n");exit(0);}
while((ndir=readdir(ddir))!=NULL)
{//printf("%s\n",ndir->d_name);
snprintf(buff,sizeof(buff),"%s",ndir->d_name);
printf("%s\n",buff);
write(connfd,buff,sizeof(buff));
}
write(connfd,"\0",1);
closedir(ddir);
read(connfd,buff,sizeof(buff)); //get the name after get 0xAA
strncpy(f_name,buff,sizeof(buff)-1);
}
else
{ printf("this is not secure client\n");break;}
//-------------------------------------- if file found send 1 else 0
fil_fd=open(f_name,O_RDONLY); //file opent to be read only
if(fil_fd < 0)
{
snprintf(buff, sizeof(buff),"%d",0);
write(connfd,buff,1);
printf("file is not found\n"); //retminate connection only
break;
}
else
{
snprintf(buff, sizeof(buff),"%d",1);
write(connfd,buff,sizeof(buff));
printf("file exists.Send %s to client\n",buff);
//-----------------------------------reading and sending
while((n=read(fil_fd,buff,sizeof(buff)-1))>0)
{ buff[n]='\0';
write(connfd,buff,/*sizeof(buff)*/n+1); //sending the file process
bzero(buff,sizeof(buff));
}//end of uploading
printf("end download thf file");
close(fil_fd);
}//end of if_else
close(connfd);
exit(0);
}//end of child code
else
{
//wait(NULL);
printf("-------------------------------\n");
close(connfd);
}
}//end of for()
//--------------------------------------------prepair the server connection
close(listenfd);
exit(0);
return 0;
}//main()
如果我将它与“file.txt”一起使用,此代码可以正常工作。我想将它与二进制文件一起使用,而不使用 fread()
或 fwrite
或 fopen
。有什么办法可以做到吗?
最佳答案
您无法编写忽略 read()、recv() 等返回值的正确网络软件。这些函数返回 -1(表示错误)、0(表示流结束)或读取计数。您当前的代码忽略了所有三种可能性,并且还假设 read() 填充了缓冲区。没有任何地方这样说。
编辑:我应该明确指出,这同样适用于从任何来源读取,而不仅仅是网络。
关于c - 无法传输二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19735325/
今天我在一个 Java 应用程序中看到了几种不同的加载文件的方法。 文件:/ 文件:// 文件:/// 这三个 URL 开头有什么区别?使用它们的首选方式是什么? 非常感谢 斯特凡 最佳答案 file
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我有一个 javascript 文件,并且在该方法中有一个“测试”方法,我喜欢调用 C# 函数。 c# 函数与 javascript 文件不在同一文件中。 它位于 .cs 文件中。那么我该如何管理 j
需要检查我使用的文件/目录的权限 //filePath = path of file/directory access denied by user ( in windows ) File fil
我在一个目录中有很多 java 文件,我想在我的 Intellij 项目中使用它。但是我不想每次开始一个新项目时都将 java 文件复制到我的项目中。 我知道我可以在 Visual Studio 和
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我有 3 个组件的 Twig 文件: 文件 1: {# content-here #} 文件 2: {{ title-here }} {# content-here #}
我得到了 mod_ldap.c 和 mod_authnz_ldap.c 文件。我需要使用 Linux 命令的 mod_ldap.so 和 mod_authnz_ldap.so 文件。 最佳答案 从 c
我想使用PIE在我的项目中使用 IE7。 但是我不明白的是,我只能在网络服务器上使用 .htc 文件吗? 我可以在没有网络服务器的情况下通过浏览器加载的本地页面中使用它吗? 我在 PIE 的文档中看到
我在 CI 管道中考虑这一点,我应该首先构建和测试我的应用程序,结果应该是一个 docker 镜像。 我想知道使用构建环境在构建服务器上构建然后运行测试是否更常见。也许为此使用构建脚本。最后只需将 j
using namespace std; struct WebSites { string siteName; int rank; string getSiteName() {
我是 Linux 新手,目前正在尝试使用 ginkgo USB-CAN 接口(interface) 的 API 编程功能。为了使用 C++ 对 API 进行编程,他们提供了库文件,其中包含三个带有 .
我刚学C语言,在实现一个程序时遇到了问题将 test.txt 文件作为程序的输入。 test.txt 文件的内容是: 1 30 30 40 50 60 2 40 30 50 60 60 3 30 20
如何连接两个tcpdump文件,使一个流量在文件中出现一个接一个?具体来说,我想“乘以”一个 tcpdump 文件,这样所有的 session 将一个接一个地按顺序重复几次。 最佳答案 mergeca
我有一个名为 input.MP4 的文件,它已损坏。它来自闭路电视摄像机。我什么都试过了,ffmpeg , VLC 转换,没有运气。但是,我使用了 mediainfo和 exiftool并提取以下信息
我想做什么? 我想提取 ISO 文件并编辑其中的文件,然后将其重新打包回 ISO 文件。 (正如你已经读过的) 我为什么要这样做? 我想开始修改 PSP ISO,为此我必须使用游戏资源、 Assets
给定一个 gzip 文件 Z,如果我将其解压缩为 Z',有什么办法可以重新压缩它以恢复完全相同的 gzip 文件 Z?在粗略阅读了 DEFLATE 格式后,我猜不会,因为任何给定的文件都可能在 DEF
我必须从数据库向我的邮件 ID 发送一封带有附件的邮件。 EXEC msdb.dbo.sp_send_dbmail @profile_name = 'Adventure Works Admin
我有一个大的 M4B 文件和一个 CUE 文件。我想将其拆分为多个 M4B 文件,或将其拆分为多个 MP3 文件(以前首选)。 我想在命令行中执行此操作(OS X,但如果需要可以使用 Linux),而
快速提问。我有一个没有实现文件的类的项目。 然后在 AppDelegate 我有: #import "AppDelegate.h" #import "SomeClass.h" @interface A
我是一名优秀的程序员,十分优秀!