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

« back to all changes in this revision

Viewing changes to src/parse.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_PARSE
 
2
#define H_PARSE
 
3
 
 
4
#include <sys/types.h>
 
5
 
 
6
#include "rlinetd.h"
 
7
 
 
8
struct logdata {
 
9
        int index;
 
10
        struct logdata *next;
 
11
        char *name;
 
12
        char *path;
 
13
        mode_t mode;
 
14
        uid_t uid;
 
15
        gid_t gid;
 
16
};
 
17
 
 
18
void sockettabs_free();
 
19
void logtabs_free();
 
20
void argvtabs_free();
 
21
void rlimittabs_free();
 
22
void services_free();
 
23
 
 
24
void rlp_cleanup(struct rl_cleanup *rlc);
 
25
 
 
26
enum { RLC_UNRPC };
 
27
 
 
28
struct rlc_unrpc {
 
29
        struct numlist *vers;
 
30
        long prog;
 
31
};
 
32
 
 
33
extern char *curfile_name;
 
34
extern int  curfile_line;
 
35
 
 
36
                        
 
37
#endif /* !H_PARSE */
 
38
 
 
39
/* vim: set ts=2: */