-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.cpp
61 lines (50 loc) · 1.43 KB
/
server.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#define MAXLINE 4096
template<class T>
int length(T& data)
{
return sizeof(data)/sizeof(data[0]);
}
int main(int argc, char** argv) {
int listenfd, connfd;
sockaddr_in servaddr;
char buff[4096];
int n;
memset(&servaddr, 0, sizeof(servaddr));
servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
servaddr.sin_port = htons(6666);
servaddr.sin_family = AF_INET;
printf("create socket...\n");
if ((listenfd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
printf("create socket error: %s(errno: %d)\n", strerror(errno), errno);
return 0;
}
printf("socket : %d \n", listenfd);
printf("binding port ...\n");
if ( bind(listenfd, (const struct sockaddr*) &servaddr, sizeof(servaddr)) == -1) {
printf("bind socket error: %s(errno: %d)\n", strerror(errno), errno);
return 0;
}
if (listen(listenfd, 10) == -1){
printf("listen socket error: %s(errno: %d)\n", strerror(errno), errno);
}
printf("=====waiting for client's request =====\n");
while(1){
if(connfd = accept(listenfd, NULL, NULL) < 0) {
printf("accept error: %s(errno: %d)\n", strerror(errno), errno);
}
n = recv(connfd, buff, MAXLINE, 0);
buff[n] = '\0';
printf("recv msg from client: %s \n", buff);
close(connfd);
}
close(listenfd);
return 0;
}