Skip to content

Commit

Permalink
读书笔记
Browse files Browse the repository at this point in the history
  • Loading branch information
chankeh committed Jul 31, 2017
1 parent f087cf7 commit 16d6cb1
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
50 changes: 50 additions & 0 deletions ch01/hello_client.c
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);
}
61 changes: 61 additions & 0 deletions ch01/hello_server.c
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 added ch01/理解网络编程和套接字.docx
Binary file not shown.

4 comments on commit 16d6cb1

@ipsender
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这是什么书啊

@chankeh
Copy link
Owner Author

@chankeh chankeh commented on 16d6cb1 Oct 14, 2018 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kingziqiao
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

你好,可以加下微信吗,我在网络编程这块是个小白,想请教大佬学习路线,我VX:13873248262
star三连,提前祝大佬新年快乐,哈哈哈

@chankeh
Copy link
Owner Author

@chankeh chankeh commented on 16d6cb1 Dec 15, 2019 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.