From 195fd275f84bd05837b6bb1db5ee6a64af412960 Mon Sep 17 00:00:00 2001 From: otto <> Date: Thu, 24 Oct 2019 05:57:41 +0000 Subject: [PATCH] Allow the caller of asr functions to create and use a specific context. Diff from eric@ and florian@, commiting on their behalf since they are absent and we want to ride the minor shlib bump. --- src/include/asr.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/include/asr.h b/src/include/asr.h index 0ceb0f5a..0e38d550 100644 --- a/src/include/asr.h +++ b/src/include/asr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asr.h,v 1.1 2014/03/26 18:13:15 eric Exp $ */ +/* $OpenBSD: asr.h,v 1.2 2019/10/24 05:57:41 otto Exp $ */ /* * Copyright (c) 2012-2014 Eric Faurot * @@ -58,6 +58,8 @@ struct asr_result { /* Forward declaration. The API uses opaque pointers as query handles. */ struct asr_query; +void *asr_resolver_from_string(const char *); +void asr_resolver_free(void *); int asr_run(struct asr_query *, struct asr_result *); int asr_run_sync(struct asr_query *, struct asr_result *); void asr_abort(struct asr_query *);