-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab6_question1_server.c
53 lines (50 loc) · 1.75 KB
/
lab6_question1_server.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
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#define SERVER_PORT 6001
#define MAX_CLIENT 4
int main(){
char buffer [1024];
int server_socket , client_socket ;
// server_address = explicit address of server
//client_address = client information
struct sockaddr_in server_address , client_address ;
//filling the server address record
server_address.sin_family=AF_INET; //IPv4
server_address.sin_port=htons(SERVER_PORT);
server_address.sin_addr.s_addr=inet_addr("127.0.0.1");
//server_address.sin_addr.s_addr=INADDR_ANY;
//making socket family = AF_INET, type = SOCK_STREAM , protocol = TCP
server_socket = socket ( AF_INET , SOCK_STREAM , IPPROTO_TCP );
//binding socket to the server address
bind ( server_socket , (struct sockaddr * ) & server_address ,sizeof(server_address)) ;
//listening to incoming requests from clients with backlog of 5 clients
listen (server_socket , MAX_CLIENT);
int clientsize=sizeof(client_address);
if ((client_socket = accept ( server_socket , (struct sockaddr * ) & client_address , &(clientsize)))>=0)
printf("A connection from a client is recieved\n");
else
printf("Error in accepting the connection from the client\n ");
while(1) {
bzero(buffer,1024);
read(client_socket , buffer , 1024) ;
FILE *pointer;
char c;
pointer=fopen(buffer,"r");
bzero(buffer,1024);
while(1){
c=fgetc(pointer);
if(feof(pointer))
break;
buffer[0]=c;
buffer[1]='\0';
write(client_socket , buffer , strlen(buffer));
printf ("%s\n", buffer);
}
fclose(pointer);
}
return 0;
}