-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <unistd.h> | ||
#include <arpa/inet.h> | ||
#include <sys/socket.h> | ||
|
||
void error_handling(char *message); | ||
|
||
int main(int argc,char *argv[]){ | ||
int sock; | ||
struct sockaddr_in serv_addr; | ||
char message[30]; | ||
int str_len; | ||
|
||
if(argc != 3){ | ||
printf("Usage : %s <IP> <port>\n",argv[0]); | ||
exit(1); | ||
} | ||
|
||
sock = socket(PF_INET,SOCK_STREAM,0); | ||
if(sock == -1){ | ||
error_handling("socket() error"); | ||
} | ||
|
||
memset(&serv_addr,0,sizeof(serv_addr)); | ||
serv_addr.sin_family = AF_INET; | ||
serv_addr.sin_addr.s_addr = inet_addr(argv[1]); | ||
serv_addr.sin_port = htons(atoi(argv[2])); | ||
|
||
if(connect(sock,(struct sockaddr *)&serv_addr,sizeof(serv_addr)) == -1){ | ||
error_handling("connect() error\r\n"); | ||
} | ||
str_len = read(sock,message,sizeof(message)-1); | ||
if(str_len == -1) | ||
{ | ||
error_handling("read() error"); | ||
} | ||
|
||
printf("Message from server : %s \n",message); | ||
|
||
close(sock); | ||
return 0; | ||
} | ||
|
||
void error_handling(char *message){ | ||
fputs(message,stderr); | ||
fputs("\n",stderr); | ||
exit(1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <unistd.h> | ||
#include <arpa/inet.h> | ||
#include <sys/socket.h> | ||
|
||
void error_handling(char *message); | ||
|
||
int main(int argc, char *argv[]){ | ||
int serv_sock; | ||
int clnt_sock; | ||
|
||
struct sockaddr_in serv_addr; | ||
struct sockaddr_in clnt_addr; | ||
socklen_t clnt_addr_size; | ||
|
||
char message[]="hello world!"; | ||
if(argc != 2){ | ||
printf("Usage : %s <port>\n",argv[0]); | ||
exit(1); | ||
} | ||
serv_sock = socket(PF_INET,SOCK_STREAM,0); | ||
if(serv_sock == -1){ | ||
error_handling("socket() error"); | ||
} | ||
|
||
memset(&serv_addr,0,sizeof(serv_addr)); | ||
serv_addr.sin_family=AF_INET; | ||
serv_addr.sin_addr.s_addr=htonl(INADDR_ANY); | ||
serv_addr.sin_port=htons(atoi(argv[1])); | ||
|
||
if(bind(serv_sock,(struct sockaddr*)&serv_addr,sizeof(serv_addr)) == -1){ | ||
error_handling("bind() error"); | ||
} | ||
|
||
if(listen(serv_sock,5) == -1){ | ||
error_handling("listen() error"); | ||
} | ||
|
||
clnt_addr_size = sizeof(clnt_addr); | ||
clnt_sock = accept(serv_sock,(struct sockaddr *)&clnt_addr,&clnt_addr_size); | ||
if(clnt_sock == -1){ | ||
error_handling("accept() error"); | ||
} | ||
|
||
write(clnt_sock,message,sizeof(message)); | ||
|
||
close(clnt_sock); | ||
close(serv_sock); | ||
|
||
return 0; | ||
|
||
} | ||
|
||
void error_handling(char *message){ | ||
|
||
fputs(message,stderr); | ||
fputs("\n",stderr); | ||
exit(1); | ||
} |
Binary file not shown.
16d6cb1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这是什么书啊
16d6cb1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
16d6cb1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
你好,可以加下微信吗,我在网络编程这块是个小白,想请教大佬学习路线,我VX:13873248262
star三连,提前祝大佬新年快乐,哈哈哈
16d6cb1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.