~ubuntu-branches/ubuntu/karmic/cyrus-imapd-2.2/karmic

« back to all changes in this revision

Viewing changes to imap/pushstats.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-11 18:51:39 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711185139-gl3oe4tppp7g3euf
Tags: 2.2.13-4ubuntu1
Synchronize with Debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
 
23
23
 
 
24
#define SNMPDEFINE_cmutree "1.3.6.1.4.1.3.2.2.3"
24
25
#define SNMPDEFINE_cmuimap "1.3.6.1.4.1.3.2.2.3.1"
25
 
#define SNMPDEFINE_cmutree "1.3.6.1.4.1.3.2.2.3"
26
26
 
27
27
 
28
28
 
36
36
 
37
37
#define snmp_increment(a, b)
38
38
 
39
 
#ifdef __GNUC__
40
 
 
41
 
#define snmp_increment_args(args...)
42
 
 
43
 
#else
44
 
 
45
 
#define snmp_increment_args(args)
46
 
 
47
 
#endif
 
39
#define snmp_increment_args(a, b, c, d, e)
48
40
 
49
41
#define snmp_set(a, b)
50
42
 
72
64
 
73
65
typedef enum {
74
66
 
75
 
    RENAME_COUNT,
76
 
    EXAMINE_COUNT,
77
 
    NOOP_COUNT,
78
 
    LOGOUT_COUNT,
79
 
    SETACL_COUNT,
80
 
    SETQUOTA_COUNT,
 
67
    MYRIGHTS_COUNT,
 
68
    BBOARD_COUNT,
 
69
    LSUB_COUNT,
 
70
    AUTHENTICATION_YES,
 
71
    GETQUOTAROOT_COUNT,
 
72
    STATUS_COUNT,
 
73
    FETCH_COUNT,
 
74
    STARTTLS_COUNT,
 
75
    LOGIN_COUNT,
 
76
    UNSUBSCRIBE_COUNT,
81
77
    GETANNOTATION_COUNT,
82
 
    IDLE_COUNT,
 
78
    SERVER_NAME_VERSION,
 
79
    LISTRIGHTS_COUNT,
 
80
    AUTHENTICATION_NO,
83
81
    SORT_COUNT,
84
 
    GETUIDS_COUNT,
 
82
    EXAMINE_COUNT,
85
83
    EXPUNGE_COUNT,
 
84
    SERVER_UPTIME,
86
85
    CHECK_COUNT,
87
 
    AUTHENTICATION_NO,
 
86
    CAPABILITY_COUNT,
 
87
    RENAME_COUNT,
 
88
    LIST_COUNT,
 
89
    ID_COUNT,
 
90
    GETQUOTA_COUNT,
 
91
    IDLE_COUNT,
 
92
    DELETE_COUNT,
 
93
    SETANNOTATION_COUNT,
 
94
    GETACL_COUNT,
88
95
    SELECT_COUNT,
89
 
    GETQUOTAROOT_COUNT,
90
96
    UNSELECT_COUNT,
91
 
    STARTTLS_COUNT,
92
 
    SERVER_NAME_VERSION,
 
97
    SETACL_COUNT,
 
98
    CLOSE_COUNT,
 
99
    NOOP_COUNT,
 
100
    GETUIDS_COUNT,
 
101
    SEARCH_COUNT,
 
102
    NAMESPACE_COUNT,
93
103
    THREAD_COUNT,
94
 
    DELETE_COUNT,
95
 
    COPY_COUNT,
 
104
    SETQUOTA_COUNT,
 
105
    LOGOUT_COUNT,
 
106
    CREATE_COUNT,
 
107
    SUBSCRIBE_COUNT,
 
108
    TOTAL_CONNECTIONS,
 
109
    DELETEACL_COUNT,
 
110
    ACTIVE_CONNECTIONS,
96
111
    STORE_COUNT,
97
 
    SERVER_UPTIME,
98
 
    GETQUOTA_COUNT,
99
112
    FIND_COUNT,
100
 
    LSUB_COUNT,
101
 
    APPEND_COUNT,
102
 
    FETCH_COUNT,
103
 
    SEARCH_COUNT,
104
113
    AUTHENTICATE_COUNT,
105
 
    BBOARD_COUNT,
106
 
    CLOSE_COUNT,
107
114
    PARTIAL_COUNT,
108
 
    ID_COUNT,
109
 
    SETANNOTATION_COUNT,
110
 
    NAMESPACE_COUNT,
111
 
    SUBSCRIBE_COUNT,
112
 
    LOGIN_COUNT,
113
 
    AUTHENTICATION_YES,
114
 
    DELETEACL_COUNT,
115
 
    TOTAL_CONNECTIONS,
116
 
    CREATE_COUNT,
117
 
    GETACL_COUNT,
118
 
    CAPABILITY_COUNT,
119
 
    LIST_COUNT,
120
 
    UNSUBSCRIBE_COUNT,
121
 
    STATUS_COUNT,
122
 
    ACTIVE_CONNECTIONS,
123
 
    LISTRIGHTS_COUNT,
124
 
    MYRIGHTS_COUNT
 
115
    APPEND_COUNT,
 
116
    COPY_COUNT
125
117
} pushstats_t;
126
118
 
127
119