1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) The Exim Maintainers 2020 - 2022 */
6 /* Copyright (c) University of Cambridge 1995 - 2015 */
7 /* See the file NOTICE for conditions of use and distribution. */
9 /* This code originally came from Robert Wal. */
14 #include <whoson.h> /* Public header */
17 /*************************************************
19 *************************************************/
21 /* See local README for interface description. */
24 whoson_open(const uschar * filename, uschar ** errmsg)
26 return (void *)(1); /* Just return something non-null */
30 /*************************************************
32 *************************************************/
34 /* See local README for interface description. */
37 whoson_find(void * handle, const uschar * filename, uschar * query, int length,
38 uschar ** result, uschar ** errmsg, uint * do_cache, const uschar * opts)
42 switch (wso_query(CS query, CS buffer, sizeof(buffer)))
45 *result = string_copy(buffer); /* IP in database; return name of user */
49 return FAIL; /* IP not in database */
52 *errmsg = string_sprintf("WHOSON: failed to complete: %s", buffer);
59 /*************************************************
60 * Version reporting entry point *
61 *************************************************/
63 /* See local README for interface description. */
65 #include "../version.h"
68 whoson_version_report(gstring * g)
70 g = string_fmt_append(g,
71 "Library version: Whoson: Runtime: %s\n", wso_version());
73 g = string_fmt_append(g,
74 " Exim version %s\n", EXIM_VERSION_STR);
79 static lookup_info _lookup_info = {
80 .name = US"whoson", /* lookup name */
81 .type = lookup_querystyle, /* query-style lookup */
82 .open = whoson_open, /* open function */
83 .check = NULL, /* check function */
84 .find = whoson_find, /* find function */
85 .close = NULL, /* no close function */
86 .tidy = NULL, /* no tidy function */
87 .quote = NULL, /* no quoting function */
88 .version_report = whoson_version_report /* version reporting */
92 #define whoson_lookup_module_info _lookup_module_info
95 static lookup_info *_lookup_list[] = { &_lookup_info };
96 lookup_module_info whoson_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };
98 /* End of lookups/whoson.c */