From 8455dc9801730e599510c92cdb3e05da351aa7a5 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Fri, 3 Sep 2010 00:58:55 +0200 Subject: Low level connect and read working, kind of. At least TCP. Next: serializing. --- lib/test-blocking.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 lib/test-blocking.c (limited to 'lib/test-blocking.c') diff --git a/lib/test-blocking.c b/lib/test-blocking.c new file mode 100644 index 0000000..641a34f --- /dev/null +++ b/lib/test-blocking.c @@ -0,0 +1,62 @@ +#include +#include +#include +#include +#include +#include +#include "blocking.h" + +int +f (const struct sockaddr *addr, + socklen_t addrlen, + int out_fd) +{ + int fd = -1; + //struct rs_alloc_scheme as = { calloc, malloc, free, realloc }; + struct rs_config ctx = { RS_CONN_TYPE_TCP, RS_CRED_NONE, NULL }; + struct rs_packet *p = NULL; + + fd = rs_connect (&ctx, addr, addrlen); + if (fd < 0) + { + perror ("rs_connect"); + return -1; + } + + p = next_packet (&ctx, fd); + if (p == NULL) + { + perror ("next_packet"); + rs_disconnect (&ctx, fd); + return -1; + } + rs_disconnect (&ctx, fd); + + if (send_packet (&ctx, out_fd, p)) + { + rs_packet_free (&ctx, p); + perror ("send_packet"); + return -1; + } + + return 0; +} + +int +main (int argc, char *argv[]) +{ + struct addrinfo *ai; + int rc; + + rc = getaddrinfo (argv[1], argv[2], NULL, &ai); + if (rc) + { + if (rc == EAI_SYSTEM) + perror ("getaddrinfo"); + else + fprintf (stderr, "getaddrinfo: %s\n", gai_strerror (rc)); + return -1; + } + + return f (ai->ai_addr, ai->ai_addrlen, 1); +} -- cgit v1.1