This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path5-11-setrecvbuffer.c
65 lines (55 loc) · 1.85 KB
/
5-11-setrecvbuffer.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
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#define BUFFER_SIZE 1024
int main(int argc, const char *argv[])
{
if (argc < 2)
{
printf("Usage: %s ip_address port_number recv_buffer_size\n", basename(argv[0]));
return 1;
}
const char *ip = argv[1];
int port = atoi(argv[2]);
int recvbuf = atoi(argv[3]);
struct sockaddr_in address;
bzero(&address, sizeof(address));
address.sin_family = AF_INET;
inet_pton(AF_INET, ip, &address.sin_addr);
address.sin_port = htons(port);
int sock = socket(PF_INET, SOCK_STREAM, 0);
assert(sock >= 0);
int len = sizeof(recvbuf);
/*先设置TCP接收缓冲区的大小,然后立即读取之*/
setsockopt(sock, SOL_SOCKET, SO_RCVBUF, &recvbuf, sizeof(recvbuf));
getsockopt(sock, SOL_SOCKET, SO_RCVBUF, &recvbuf, (socklen_t *)&len);
printf("the tcp receive buffer size after setting is %d\n", recvbuf);
int ret = bind(sock, (struct sockaddr *)&address, sizeof(address));
assert(ret != -1);
ret = listen(sock, 5);
assert(ret != -1);
struct sockaddr_in client;
socklen_t client_addrlength = sizeof(client);
int connfd = accept(sock, (struct sockaddr *)&client, &client_addrlength);
if (connfd < 0)
{
printf("errno is: %d, errstr:%s\n", errno, strerror(errno));
}
else
{
char buffer[BUFFER_SIZE];
memset(buffer, '\0', BUFFER_SIZE);
while(recv(connfd, buffer, BUFFER_SIZE, 0) > 0) {}
close(connfd);
char client_ip[INET_ADDRSTRLEN];
inet_ntop(AF_INET, (void *)&client.sin_addr, client_ip, (socklen_t )INET_ADDRSTRLEN);
printf("Recv data from %s, data content is:%s\n", client_ip, buffer);
}
close(sock);
return 0;
}