-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.c
108 lines (97 loc) · 2.69 KB
/
main.c
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#include <stdio.h>
#include <sys/socket.h>
#include <unistd.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <string.h>
#include <arpa/inet.h>
#define PORT 9000
int port = 0;
char *path;
void loadConfig(){
// file contains format like this:
/*
PORT=80
PATH=/var/www/html/index.html
*/
FILE *fp;
char *line = NULL;
size_t len = 0;
ssize_t read;
fp = fopen("config.txt", "r");
if (fp == NULL)
exit(EXIT_FAILURE);
while ((read = getline(&line, &len, fp)) != -1) {
if(strstr(line, "PORT=") != NULL){
port = atoi(line + 5);
}
if(strstr(line, "PATH=") != NULL){
path = line + 5;
}
}
fclose(fp);
printf("File is loaded!! :)\n");
printf("Port: %d\n", port);
printf("Path: %s\n", path);
}
void setUpServer(char httpHeader[]){
// file is path + index.html
FILE *fp;
fp = fopen(strcat(path, "index.html"), "r");
if (fp == NULL)
exit(EXIT_FAILURE);
char *line = NULL;
size_t len = 0;
ssize_t read;
while ((read = getline(&line, &len, fp)) != -1) {
strcat(httpHeader, line);
}
fclose(fp);
}
int main(int argc, char const *argv[]){
int server_fd, new_socket; long valread;
struct sockaddr_in address;
int addrlen = sizeof(address);
// Only this line has been changed. Everything is same.
// give size
char httpHeader[100000] = "HTTP/1.1 200 OK\r\n\n";
loadConfig();
setUpServer(httpHeader);
printf("Header: %s\n", httpHeader);
// Creating socket file descriptor
if ((server_fd = socket(AF_INET, SOCK_STREAM, 0)) == 0)
{
perror("In socket");
exit(EXIT_FAILURE);
}
address.sin_family = AF_INET;
address.sin_addr.s_addr = INADDR_ANY;
address.sin_port = htons(port);
memset(address.sin_zero, '\0', sizeof address.sin_zero);
if (bind(server_fd, (struct sockaddr *)&address, sizeof(address))<0)
{
perror("In bind");
exit(EXIT_FAILURE);
}
if (listen(server_fd, 10) < 0)
{
perror("In listen");
exit(EXIT_FAILURE);
}
while(1)
{
printf("\n+++++++ Waiting for new connection ++++++++\n\n");
if ((new_socket = accept(server_fd, (struct sockaddr *)&address, (socklen_t*)&addrlen))<0)
{
perror("In accept");
exit(EXIT_FAILURE);
}
char buffer[30000] = {0};
valread = read( new_socket , buffer, 30000);
printf("%s\n",buffer );
write(new_socket , httpHeader , strlen(httpHeader));
printf("------------------Hello message sent-------------------");
close(new_socket);
}
return 0;
}