1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2015 */
6 /* Copyright (c) The Exim Maintainers 2020 */
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(FILE *f)
70 fprintf(f, "Library version: Whoson: Runtime: %s\n", wso_version());
72 fprintf(f, " Exim version %s\n", EXIM_VERSION_STR);
76 static lookup_info _lookup_info = {
77 .name = US"whoson", /* lookup name */
78 .type = lookup_querystyle, /* query-style lookup */
79 .open = whoson_open, /* open function */
80 .check = NULL, /* check function */
81 .find = whoson_find, /* find function */
82 .close = NULL, /* no close function */
83 .tidy = NULL, /* no tidy function */
84 .quote = NULL, /* no quoting function */
85 .version_report = whoson_version_report /* version reporting */
89 #define whoson_lookup_module_info _lookup_module_info
92 static lookup_info *_lookup_list[] = { &_lookup_info };
93 lookup_module_info whoson_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };
95 /* End of lookups/whoson.c */