forked from 0intro/libtask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcpload.c
52 lines (43 loc) · 784 Bytes
/
tcpload.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
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <task.h>
#include <stdlib.h>
enum
{
STACK = 32768
};
char *server;
int port;
void fetchtask(void*);
void
taskmain(int argc, char **argv)
{
int i, n;
if(argc != 4){
fprintf(stderr, "usage: httpload n server port\n");
taskexitall(1);
}
n = atoi(argv[1]);
server = argv[2];
port = atoi(argv[3]);
for(i=0; i<n; i++)
taskcreate(fetchtask, 0, STACK);
}
void
fetchtask(void *v)
{
int fd, i;
char buf[512];
(void)v;
for(i=0; i<1000; i++){
if((fd = netdial(TCP, server, port)) < 0){
fprintf(stderr, "dial %s: %s (%s)\n", server, strerror(errno), taskgetstate());
continue;
}
snprintf(buf, sizeof buf, "xxxxxxxxxx");
fdwrite(fd, buf, strlen(buf));
close(fd);
}
}