-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserver11.c
91 lines (78 loc) · 1.57 KB
/
server11.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
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <string.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
struct dict
{
char wrd[50], mn[50];
}arr[22];
void main()
{
int ssock, csock;
char wd[50];
unsigned int len;
struct sockaddr_in client, server;
if((ssock = socket(AF_INET, SOCK_STREAM, 0)) == -1)
{
perror("No socket\n");
exit(-1);
}
server.sin_family = AF_INET;
server.sin_port = htons(30000);
server.sin_addr.s_addr = INADDR_ANY;
bzero(&server.sin_zero, 0);
len = sizeof(struct sockaddr_in);
if((bind(ssock, (struct sockaddr *)&server, len)) == -1)
{
perror("Cannot bind\n");
exit(-1);
}
if(listen(ssock, 5) == -1)
{
perror("Cannot listen\n");
exit(-1);
}
if((csock = accept(ssock, (struct sockaddr *)&client, &len)) == -1)
{
perror("Cannot accept\n");
exit(-1);
}
FILE *FX;
FX = fopen("f11.dat", "wb");
for(int i=0;i<5;i++)
{
printf("Enter word and meaning\n");
scanf("%s %s", arr[i].wrd, arr[i].mn);
fwrite(&arr[i], sizeof(struct dict), 1, FX);
}
fclose(FX);
FX = fopen("f11.dat", "rb");
fseek(FX, 0, SEEK_END);
int n = ftell(FX)/sizeof(struct dict);
while(1)
{
recv(csock, wd, sizeof(wd), 0);
char fz[20] = "ABCHORHAI";
fseek(FX, 0, SEEK_SET);
int ok = 0;
for(int i=0;i<n;i++)
{
fread(&arr[21], sizeof(struct dict), 1, FX);
if(!strcmp(arr[21].wrd, wd))
{
ok = 1;
break;
}
}
if(ok)
send(csock, arr[21].mn, sizeof(arr[21].mn), 0);
else send(csock, fz, sizeof(fz), 0);
}
fclose(FX);
close(ssock);
}