File: utils_cmd.h

package info (click to toggle)
nagios-plugins 1.4.15-3squeeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 10,184 kB
  • ctags: 6,100
  • sloc: ansic: 55,405; perl: 13,875; sh: 13,136; makefile: 496; python: 444; awk: 46
file content (35 lines) | stat: -rw-r--r-- 879 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef _UTILS_CMD_
#define _UTILS_CMD_

/* 
 * Header file for nagios plugins utils_cmd.c
 * 
 * 
 */

/** types **/
struct output
{
	char *buf;     /* output buffer */
	size_t buflen; /* output buffer content length */
	char **line;   /* array of lines (points to buf) */
	size_t *lens;  /* string lengths */
	size_t lines;  /* lines of output */
};

typedef struct output output;

/** prototypes **/
int cmd_run (const char *, output *, output *, int);
int cmd_run_array (char *const *, output *, output *, int);
int cmd_file_read (char *, output *, int);

/* only multi-threaded plugins need to bother with this */
void cmd_init (void);
#define CMD_INIT cmd_init()

/* possible flags for cmd_run()'s fourth argument */
#define CMD_NO_ARRAYS 0x01   /* don't populate arrays at all */
#define CMD_NO_ASSOC 0x02    /* output.line won't point to buf */

#endif /* _UTILS_CMD_ */