~ubuntu-branches/debian/sid/openchange/sid

« back to all changes in this revision

Viewing changes to libmapi/idset.h

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2012-04-12 20:07:57 UTC
  • mfrom: (11 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120412200757-k933d9trljmxj1l4
Tags: 1:1.0-4
* openchangeserver: Add dependency on openchangeproxy.
* Rebuild against newer version of Samba 4.
* Use dpkg-buildflags.
* Migrate to Git, update Vcs-Git header.
* Switch to debhelper 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   OpenChange MAPI implementation.
 
3
 
 
4
   Copyright (C) Wolfgang Sourdeau 2011
 
5
 
 
6
   This program is free software; you can redistribute it and/or modify
 
7
   it under the terms of the GNU General Public License as published by
 
8
   the Free Software Foundation; either version 3 of the License, or
 
9
   (at your option) any later version.
 
10
   
 
11
   This program is distributed in the hope that it will be useful,
 
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
   GNU General Public License for more details.
 
15
   
 
16
   You should have received a copy of the GNU General Public License
 
17
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef __LIBMAPI_IDSET_H_
 
21
#define __LIBMAPI_IDSET_H_
 
22
 
 
23
#include <gen_ndr/misc.h>
 
24
 
 
25
struct idset {
 
26
        bool                    idbased; /* replid-/replguid based */
 
27
        union {
 
28
                uint16_t        id;
 
29
                struct GUID     guid;
 
30
        } repl;
 
31
        bool                    single; /* single range */
 
32
        uint32_t                range_count;
 
33
        struct globset_range    *ranges;
 
34
        struct idset            *next;
 
35
};
 
36
 
 
37
struct globset_range {
 
38
        uint64_t                low;
 
39
        uint64_t                high;
 
40
        struct globset_range    *prev;
 
41
        struct globset_range    *next;
 
42
};
 
43
 
 
44
struct rawidset {
 
45
        TALLOC_CTX      *mem_ctx;
 
46
        bool            idbased; /* replid-/replguid based */
 
47
        union {
 
48
                uint16_t        id;
 
49
                struct GUID     guid;
 
50
        } repl;
 
51
        bool            single; /* single range */
 
52
        uint64_t        *globcnts;
 
53
        int             count;
 
54
        int             max_count;
 
55
        struct rawidset *next;
 
56
};
 
57
 
 
58
#endif /* __LIBMAPI_IDSET_H_ */