~ubuntu-branches/ubuntu/maverick/exim4/maverick-updates

« back to all changes in this revision

Viewing changes to src/lookups/lsearch.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2010-01-01 16:28:19 UTC
  • mfrom: (2.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100101162819-htn71my7yj4v1vkr
Tags: 4.71-3ubuntu1
* Merge with Debian unstable (lp: #501657). Remaining changes:
  + debian/patches/71_exiq_grep_error_on_messages_without_size.dpatch:
    Improve handling of broken messages when "exim4 -bp" (mailq) reports
    lines without size info.
  + Don't declare a Provides: default-mta; in Ubuntu, we want postfix to be
    the default.
  + debian/control: Change build dependencies to MySQL 5.1.
  + debian/{control,rules}: add and enable hardened build for PIE
    (Debian bug 542726).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Cambridge: exim/exim-src/src/lookups/lsearch.h,v 1.5 2009/11/16 19:50:38 nm4 Exp $ */
 
2
 
 
3
/*************************************************
 
4
*     Exim - an Internet mail transport agent    *
 
5
*************************************************/
 
6
 
 
7
/* Copyright (c) University of Cambridge 1995 - 2009 */
 
8
/* See the file NOTICE for conditions of use and distribution. */
 
9
 
 
10
/* Header for the lsearch and wildlsearch lookups */
 
11
 
 
12
extern void *lsearch_open(uschar *, uschar **);
 
13
extern BOOL  lsearch_check(void *, uschar *, int, uid_t *, gid_t *, uschar **);
 
14
extern int   lsearch_find(void *, uschar *, uschar *, int, uschar **,
 
15
               uschar **, BOOL *);
 
16
extern void  lsearch_close(void *);
 
17
 
 
18
extern int   wildlsearch_find(void *, uschar *, uschar *, int, uschar **,
 
19
               uschar **, BOOL *);
 
20
extern int   nwildlsearch_find(void *, uschar *, uschar *, int, uschar **,
 
21
               uschar **, BOOL *);
 
22
extern int   iplsearch_find(void *, uschar *, uschar *, int, uschar **,
 
23
               uschar **, BOOL *);
 
24
 
 
25
/* End of lookups/lsearch.h */