-
Notifications
You must be signed in to change notification settings - Fork 0
/
op_client.c
62 lines (54 loc) · 1.47 KB
/
op_client.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <unistd.h>
void error_handling(char *message);
#define BUF_SIZE 1024
#define RTL_SIZE 4
#define OPSZ 4
int main(int argc, char *argv[]){
int sock;
struct sockaddr_in serv_addr;
char opmsg[BUF_SIZE];
int result, opnd_cnt, i;
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");
}
else{
printf("Connected........\n");
}
fputs("Operand count: ", stdout);
scanf("%d", &opnd_cnt);
opmsg[0] = (char)opnd_cnt;
for(i=0; i<opnd_cnt; i++){
printf("Operand %d: ", i+1);
scanf("%d", (int *)&opmsg[i*OPSZ+1]);
}
fgetc(stdin);
fputs("Operator: ", stdout);
scanf("%c", &opmsg[opnd_cnt*OPSZ + 1]);
write(sock, opmsg, opnd_cnt*OPSZ+2);
read(sock, &result, RTL_SIZE);
printf("Operation result: %d \n", result);
close(sock);
return 0;
}
void error_handling(char *message){
fputs(message, stderr);
fputc('\n', stderr);
exit(1);
}