blob: 70e8eada9b28919d72662497d016657fee1a4f8c (
plain) (
blame)
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
|
// $Id$
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "bbs.h"
// standalone client to test fromd
int main(int argc, char *argv[])
{
int fd;
char buf[64];
memset(buf, 0, sizeof(buf));
if (argc < 4) {
fprintf(stderr, "Usage: %s ip:port lookup_ip\n", argv[0]);
return 0;
}
if ( (fd = toconnect(argv[1])) < 0 ) {
perror("toconnect");
return 1;
}
write(fd, argv[2], strlen(argv[2]));
read(fd, buf, sizeof(buf));
printf("%s\n", buf);
return 0;
}
|