summaryrefslogtreecommitdiffstats
path: root/daemon/fromd/fromc.c
blob: 1a5cb6b191256ee3b8943dc457bda4fd8f2c77df (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
36
37
38
// $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 port, fd;
    char buf[64];

    if (argc < 4) {
    fprintf(stderr, "Usage: %s ip port lookup_ip\n", argv[0]);
    return 0;
    }

    if ( (port = atoi(argv[2])) == 0 ) {
    fprintf(stderr, "Port given is not valid\n");
    return 1;
    }

    if ( (fd = toconnect(argv[1], port)) < 0 ) {
    perror("toconnect");
    return 1;
    }

    write(fd, argv[2], strlen(argv[2]));
    read(fd, buf, sizeof(buf));

    printf("%s\n", buf);

    return 0;
}