diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2012-09-08 11:08:22 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2012-09-08 11:08:22 +0000 |
commit | 72ea2ecbc44fd51de67859ea3067fb3ed907b81b (patch) | |
tree | 62ae8c1036592c9d07fff44f7d71809424db232d /lib/libc/asr/res_send.c | |
parent | 16338a520a35a49c1e08e81413b044888934b05e (diff) |
split asr_resolver.c into different files to overlay the libc/net
resolver implementation.
Diffstat (limited to 'lib/libc/asr/res_send.c')
-rw-r--r-- | lib/libc/asr/res_send.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/libc/asr/res_send.c b/lib/libc/asr/res_send.c new file mode 100644 index 00000000000..77d1a69c1ed --- /dev/null +++ b/lib/libc/asr/res_send.c @@ -0,0 +1,50 @@ +/* $OpenBSD: res_send.c,v 1.1 2012/09/08 11:08:21 eric Exp $ */ +/* + * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/types.h> +#include <netinet/in.h> + +#include <errno.h> +#include <resolv.h> +#include <string.h> + +#include "asr.h" + +int +res_send(const u_char *buf, int buflen, u_char *ans, int anslen) +{ + struct async *as; + struct async_res ar; + + if (ans == NULL || anslen <= 0) { + errno = EINVAL; + return (-1); + } + + as = res_send_async(buf, buflen, ans, anslen, NULL); + if (as == NULL) + return (-1); /* errno set */ + + async_run_sync(as, &ar); + + if (ar.ar_errno) { + errno = ar.ar_errno; + return (-1); + } + + return (ar.ar_datalen); +} |