~ubuntu-branches/debian/sid/rlinetd/sid

« back to all changes in this revision

Viewing changes to bytecode.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Luberda
  • Date: 2010-03-20 18:03:45 UTC
  • mfrom: (2.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100320180345-x1srfbe2tg00ezsf
Tags: 0.7-1
* New upstream version.
* Recommend rsyslog instead of sysklogd (closes: #526922).
* update-inetd:
  + add support for enabling, disabling and removing entries;
  + use ucf for managing generated files;
  + ignore ucf files in rlinetd.conf;
  + make appropriate changes in  postinst and postrm scripts.
* Set debhelper compat level to 7
* Standards-Version: 3.8.4 (no changes). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef H_BYTECODE
2
 
#define H_BYTECODE
3
 
 
4
 
typedef unsigned int rl_opcode_t;
5
 
 
6
 
enum { OP_EXEC=1, OP_FISH, OP_SUID, OP_SGID, OP_NICE,
7
 
                         OP_RLIMIT, OP_LOG, OP_CHROOT, OP_ACCEPT, OP_FORK,
8
 
                         OP_WRAP, OP_SETCAP, OP_INITGR, OP_BRANCH, OP_CLOSE,
9
 
                         OP_BUFCOPY, OP_ZERO, OP_RET, OP_EXIT, OP_ECHO,
10
 
                         OP_UP, OP_DOWN, OP_FROG, OP_LSET, OP_LCLR,
11
 
                         OP_BUFINIT, OP_BUFREAD, OP_BUFWRITE, OP_RHOOK, OP_RUNHOOK,
12
 
                         OP_WHOOK, OP_WUNHOOK, OP_BZ, OP_JUMP, OP_BZNEG,
13
 
                         OP_ADD, OP_SUB, OP_DUP, OP_POP, OP_BUFCLONE,
14
 
                         OP_BUFFREE
15
 
};
16
 
 
17
 
#endif /* !H_BYTECODE */
18
 
 
19
 
/* vim:set ts=2: */