forked from mxhpns/client-server-linux-tcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.c
32 lines (31 loc) · 769 Bytes
/
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
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include "erproc.h"
int main() {
int fd = Socket(AF_INET, SOCK_STREAM, 0);
struct sockaddr_in adr = {0};
adr.sin_family = AF_INET;
adr.sin_port = htons(34543);
Inet_pton(AF_INET, "127.0.0.1", &adr.sin_addr);
Connect(fd, (struct sockaddr *) &adr, sizeof adr);
write(fd, "Hello\n", 6);
char buf[256];
ssize_t nread;
nread = read(fd, buf, 256);
if (nread == -1) {
perror("read failed");
exit(EXIT_FAILURE);
}
if (nread == 0) {
printf("EOF occured\n");
}
write(STDOUT_FILENO, buf, nread);
sleep(10);
close(fd);
return 0;
}