~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to modules/afsql/afsql-grammar.h

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS), Gergely Nagy
  • Date: 2011-10-11 14:30:48 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20111011143048-r1iljux9xbvj3lwh
Tags: 3.3.1.dfsg-1
* New upstream release with important fixes from upstream git tree with
  non-free manpages removed.
* Drop syslog-ng.conf(5) (closes: #496521).
* syslog-ng(8) is generated, and does not mention -Q anymore
  (closes: #616069).
* Supports CAP_SYSLOG on recent kernels (closes: #630172).
* Does not use g_timeout_add_seconds anymore (closes: #609154).

[ Gergely Nagy <algernon@madhouse-project.org> ]
* Update debian/copyright to DEP-5 format.
* Simplified the logrotate file by merging identical entries.
* Include local configuration files from /etc/syslog-ng/conf.d/ (Closes:
  #609050).
* Update syslog-ng.conf to be fully 3.3 compliant.
* Compress both source and binaries (except the syslog-ng meta
  package) with xz, instead of gzip.
* Use dpkg triggers to restart syslog-ng when appropriate.
* Include DFSG-free manual pages for all binaries.
* Build with Hardening enabled.
* Mention syslog(3) in /etc/default/syslog-ng, instead of
  <linux/kernel.h> (Closes: #608605)
* Support 'status' in the init script.
  Patch from Peter Eisentraut <petere@debian.org> (Closes: #644458)
* Build-Depend on libevtlog-dev (>= 0.2.12-5~) for correct shlibs.
* Use [linux-any] in Build-Depends instead of hardcoded links.
  (Closes: #634715)
* Use $SYSLOGNG_OPTS in the init script when reloading syslog-ng.
  (Closes: #589081)

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
     LL_CONTEXT_PRAGMA = 11,
53
53
     LL_CONTEXT_FORMAT = 12,
54
54
     LL_CONTEXT_TEMPLATE_FUNC = 13,
 
55
     LL_CONTEXT_INNER_DEST = 14,
 
56
     LL_CONTEXT_INNER_SRC = 15,
55
57
     KW_SOURCE = 10000,
56
58
     KW_FILTER = 10001,
57
59
     KW_PARSER = 10002,
111
113
     KW_PROGRAM_OVERRIDE = 10165,
112
114
     KW_HOST_OVERRIDE = 10166,
113
115
     KW_THROTTLE = 10170,
 
116
     KW_THREADED = 10171,
114
117
     KW_FLAGS = 10190,
115
118
     KW_PAD_SIZE = 10200,
116
119
     KW_TIME_ZONE = 10201,
160
163
     LL_BLOCK = 10426,
161
164
     LL_PRAGMA = 10427,
162
165
     LL_EOL = 10428,
163
 
     LL_ERROR = 10429
 
166
     LL_ERROR = 10429,
 
167
     KW_VALUE_PAIRS = 10500,
 
168
     KW_SELECT = 10501,
 
169
     KW_EXCLUDE = 10502,
 
170
     KW_PAIR = 10503,
 
171
     KW_KEY = 10504,
 
172
     KW_SCOPE = 10505,
 
173
     KW_DEFAULT = 10507,
 
174
     KW_RETRIES = 10508
164
175
   };
165
176
#endif
166
177
/* Tokens.  */
177
188
#define LL_CONTEXT_PRAGMA 11
178
189
#define LL_CONTEXT_FORMAT 12
179
190
#define LL_CONTEXT_TEMPLATE_FUNC 13
 
191
#define LL_CONTEXT_INNER_DEST 14
 
192
#define LL_CONTEXT_INNER_SRC 15
180
193
#define KW_SOURCE 10000
181
194
#define KW_FILTER 10001
182
195
#define KW_PARSER 10002
236
249
#define KW_PROGRAM_OVERRIDE 10165
237
250
#define KW_HOST_OVERRIDE 10166
238
251
#define KW_THROTTLE 10170
 
252
#define KW_THREADED 10171
239
253
#define KW_FLAGS 10190
240
254
#define KW_PAD_SIZE 10200
241
255
#define KW_TIME_ZONE 10201
286
300
#define LL_PRAGMA 10427
287
301
#define LL_EOL 10428
288
302
#define LL_ERROR 10429
 
303
#define KW_VALUE_PAIRS 10500
 
304
#define KW_SELECT 10501
 
305
#define KW_EXCLUDE 10502
 
306
#define KW_PAIR 10503
 
307
#define KW_KEY 10504
 
308
#define KW_SCOPE 10505
 
309
#define KW_DEFAULT 10507
 
310
#define KW_RETRIES 10508
289
311
 
290
312
 
291
313