File: parseconf.h

package info (click to toggle)
dumputils 1.0.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 184 kB
  • ctags: 175
  • sloc: ansic: 2,403; makefile: 133; sh: 88
file content (18 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define MAXLINE 132 
#define LIST_SIZE 11

struct pconf{
    char dump_active[MAXLINE];
    char dumpdev[MAXLINE];
    char dumpdir[MAXLINE];
    char dump_level[MAXLINE];
    char dump_flags[MAXLINE];
    char dump_compress[MAXLINE];
    char panic_timeout[MAXLINE];
    char target_host[MAXLINE];
    char target_port[MAXLINE];
    char source_port[MAXLINE];
    char eth_address[MAXLINE];
};

struct pconf * parseconf(char *);