Home » Personal collection » Acorn hard disk » apps » web » Telnet/!SysLog/C-veneer/h/syslog

Telnet/!SysLog/C-veneer/h/syslog

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Personal collection » Acorn hard disk » apps » web
Filename: Telnet/!SysLog/C-veneer/h/syslog
Read OK:
File size: 0ACF bytes
Load address: 0000
Exec address: 0000
Duplicates

There is 1 duplicate copy of this file in the archive:

File contents
/*
 * syslog.h
 *
 * SysLog C header file
 *
 * (c) DoggySoft Ltd., 1996
 *
 */

#ifndef _syslog_h
#define _syslog_h

#include "kernel.h"

#define SYSLOG_MAX 1024

extern void syslog_logmessage(const char *logname, const char *text,
                              int priority);
extern int syslog_getloglevel(const char *logname);
extern void syslog_flushlog(const char *logname);
extern void syslog_setloglevel(const char *logname, int priority);
extern void syslog_logunstamped(const char *logname, const char *text,
                                int priority);
extern void syslog_indent(const char *logname);
extern void syslog_unindent(const char *logname);
extern void syslog_noindent(const char *logname);
extern const char *syslog_opensessionlog(const char *logname, int priority);
extern void syslog_closesessionlog(const char *logname);
extern void syslog_logdata(const char *logname, int priority,
                           const void *data, unsigned int size, int offset);
extern const char *syslog_readerrormessage(int errnum);
extern void syslog_logcomplete(const char *logname);
extern void syslog_irqmode(int flag);
extern void syslogf(const char *logname, int priority, const char *format,
                    ...);
extern _kernel_oserror *xsyslog_logmessage(const char *logname,
                                          const char *text, int priority);
extern _kernel_oserror *xsyslog_getloglevel(const char *logname,
                                            int *priority);
extern _kernel_oserror *xsyslog_flushlog(const char *logname);
extern _kernel_oserror *xsyslog_setloglevel(const char *logname,
                                            int priority);
extern _kernel_oserror *xsyslog_logunstamped(const char *logname,
                                             const char *text, int priority);
extern _kernel_oserror *xsyslog_indent(const char *logname);
extern _kernel_oserror *xsyslog_unindent(const char *logname);
extern _kernel_oserror *xsyslog_noindent(const char *logname);
extern _kernel_oserror *xsyslog_opensessionlog(const char *logname,
                                               int priority, char **session);
extern _kernel_oserror *xsyslog_closesessionlog(const char *logname);
extern _kernel_oserror *xsyslog_logdata(const char *logname, int priority,
                                        const void *data, unsigned int size,
                                        int offset);
extern _kernel_oserror *xsyslog_readerrormessage(int errnum, char **message);
extern _kernel_oserror *xsyslog_logcomplete(const char *logname);
extern _kernel_oserror *xsyslog_irqmode(int flag);
extern _kernel_oserror *xsyslogf(const char *logname, int priority,
                                 const char *format, ...);

#endif
00000000  2f 2a 0a 20 2a 20 73 79  73 6c 6f 67 2e 68 0a 20  |/*. * syslog.h. |
00000010  2a 0a 20 2a 20 53 79 73  4c 6f 67 20 43 20 68 65  |*. * SysLog C he|
00000020  61 64 65 72 20 66 69 6c  65 0a 20 2a 0a 20 2a 20  |ader file. *. * |
00000030  28 63 29 20 44 6f 67 67  79 53 6f 66 74 20 4c 74  |(c) DoggySoft Lt|
00000040  64 2e 2c 20 31 39 39 36  0a 20 2a 0a 20 2a 2f 0a  |d., 1996. *. */.|
00000050  0a 23 69 66 6e 64 65 66  20 5f 73 79 73 6c 6f 67  |.#ifndef _syslog|
00000060  5f 68 0a 23 64 65 66 69  6e 65 20 5f 73 79 73 6c  |_h.#define _sysl|
00000070  6f 67 5f 68 0a 0a 23 69  6e 63 6c 75 64 65 20 22  |og_h..#include "|
00000080  6b 65 72 6e 65 6c 2e 68  22 0a 0a 23 64 65 66 69  |kernel.h"..#defi|
00000090  6e 65 20 53 59 53 4c 4f  47 5f 4d 41 58 20 31 30  |ne SYSLOG_MAX 10|
000000a0  32 34 0a 0a 65 78 74 65  72 6e 20 76 6f 69 64 20  |24..extern void |
000000b0  73 79 73 6c 6f 67 5f 6c  6f 67 6d 65 73 73 61 67  |syslog_logmessag|
000000c0  65 28 63 6f 6e 73 74 20  63 68 61 72 20 2a 6c 6f  |e(const char *lo|
000000d0  67 6e 61 6d 65 2c 20 63  6f 6e 73 74 20 63 68 61  |gname, const cha|
000000e0  72 20 2a 74 65 78 74 2c  0a 20 20 20 20 20 20 20  |r *text,.       |
000000f0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000100  20 20 20 20 20 20 20 69  6e 74 20 70 72 69 6f 72  |       int prior|
00000110  69 74 79 29 3b 0a 65 78  74 65 72 6e 20 69 6e 74  |ity);.extern int|
00000120  20 73 79 73 6c 6f 67 5f  67 65 74 6c 6f 67 6c 65  | syslog_getlogle|
00000130  76 65 6c 28 63 6f 6e 73  74 20 63 68 61 72 20 2a  |vel(const char *|
00000140  6c 6f 67 6e 61 6d 65 29  3b 0a 65 78 74 65 72 6e  |logname);.extern|
00000150  20 76 6f 69 64 20 73 79  73 6c 6f 67 5f 66 6c 75  | void syslog_flu|
00000160  73 68 6c 6f 67 28 63 6f  6e 73 74 20 63 68 61 72  |shlog(const char|
00000170  20 2a 6c 6f 67 6e 61 6d  65 29 3b 0a 65 78 74 65  | *logname);.exte|
00000180  72 6e 20 76 6f 69 64 20  73 79 73 6c 6f 67 5f 73  |rn void syslog_s|
00000190  65 74 6c 6f 67 6c 65 76  65 6c 28 63 6f 6e 73 74  |etloglevel(const|
000001a0  20 63 68 61 72 20 2a 6c  6f 67 6e 61 6d 65 2c 20  | char *logname, |
000001b0  69 6e 74 20 70 72 69 6f  72 69 74 79 29 3b 0a 65  |int priority);.e|
000001c0  78 74 65 72 6e 20 76 6f  69 64 20 73 79 73 6c 6f  |xtern void syslo|
000001d0  67 5f 6c 6f 67 75 6e 73  74 61 6d 70 65 64 28 63  |g_logunstamped(c|
000001e0  6f 6e 73 74 20 63 68 61  72 20 2a 6c 6f 67 6e 61  |onst char *logna|
000001f0  6d 65 2c 20 63 6f 6e 73  74 20 63 68 61 72 20 2a  |me, const char *|
00000200  74 65 78 74 2c 0a 20 20  20 20 20 20 20 20 20 20  |text,.          |
00000210  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000220  20 20 20 20 20 20 69 6e  74 20 70 72 69 6f 72 69  |      int priori|
00000230  74 79 29 3b 0a 65 78 74  65 72 6e 20 76 6f 69 64  |ty);.extern void|
00000240  20 73 79 73 6c 6f 67 5f  69 6e 64 65 6e 74 28 63  | syslog_indent(c|
00000250  6f 6e 73 74 20 63 68 61  72 20 2a 6c 6f 67 6e 61  |onst char *logna|
00000260  6d 65 29 3b 0a 65 78 74  65 72 6e 20 76 6f 69 64  |me);.extern void|
00000270  20 73 79 73 6c 6f 67 5f  75 6e 69 6e 64 65 6e 74  | syslog_unindent|
00000280  28 63 6f 6e 73 74 20 63  68 61 72 20 2a 6c 6f 67  |(const char *log|
00000290  6e 61 6d 65 29 3b 0a 65  78 74 65 72 6e 20 76 6f  |name);.extern vo|
000002a0  69 64 20 73 79 73 6c 6f  67 5f 6e 6f 69 6e 64 65  |id syslog_noinde|
000002b0  6e 74 28 63 6f 6e 73 74  20 63 68 61 72 20 2a 6c  |nt(const char *l|
000002c0  6f 67 6e 61 6d 65 29 3b  0a 65 78 74 65 72 6e 20  |ogname);.extern |
000002d0  63 6f 6e 73 74 20 63 68  61 72 20 2a 73 79 73 6c  |const char *sysl|
000002e0  6f 67 5f 6f 70 65 6e 73  65 73 73 69 6f 6e 6c 6f  |og_opensessionlo|
000002f0  67 28 63 6f 6e 73 74 20  63 68 61 72 20 2a 6c 6f  |g(const char *lo|
00000300  67 6e 61 6d 65 2c 20 69  6e 74 20 70 72 69 6f 72  |gname, int prior|
00000310  69 74 79 29 3b 0a 65 78  74 65 72 6e 20 76 6f 69  |ity);.extern voi|
00000320  64 20 73 79 73 6c 6f 67  5f 63 6c 6f 73 65 73 65  |d syslog_closese|
00000330  73 73 69 6f 6e 6c 6f 67  28 63 6f 6e 73 74 20 63  |ssionlog(const c|
00000340  68 61 72 20 2a 6c 6f 67  6e 61 6d 65 29 3b 0a 65  |har *logname);.e|
00000350  78 74 65 72 6e 20 76 6f  69 64 20 73 79 73 6c 6f  |xtern void syslo|
00000360  67 5f 6c 6f 67 64 61 74  61 28 63 6f 6e 73 74 20  |g_logdata(const |
00000370  63 68 61 72 20 2a 6c 6f  67 6e 61 6d 65 2c 20 69  |char *logname, i|
00000380  6e 74 20 70 72 69 6f 72  69 74 79 2c 0a 20 20 20  |nt priority,.   |
00000390  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000003a0  20 20 20 20 20 20 20 20  63 6f 6e 73 74 20 76 6f  |        const vo|
000003b0  69 64 20 2a 64 61 74 61  2c 20 75 6e 73 69 67 6e  |id *data, unsign|
000003c0  65 64 20 69 6e 74 20 73  69 7a 65 2c 20 69 6e 74  |ed int size, int|
000003d0  20 6f 66 66 73 65 74 29  3b 0a 65 78 74 65 72 6e  | offset);.extern|
000003e0  20 63 6f 6e 73 74 20 63  68 61 72 20 2a 73 79 73  | const char *sys|
000003f0  6c 6f 67 5f 72 65 61 64  65 72 72 6f 72 6d 65 73  |log_readerrormes|
00000400  73 61 67 65 28 69 6e 74  20 65 72 72 6e 75 6d 29  |sage(int errnum)|
00000410  3b 0a 65 78 74 65 72 6e  20 76 6f 69 64 20 73 79  |;.extern void sy|
00000420  73 6c 6f 67 5f 6c 6f 67  63 6f 6d 70 6c 65 74 65  |slog_logcomplete|
00000430  28 63 6f 6e 73 74 20 63  68 61 72 20 2a 6c 6f 67  |(const char *log|
00000440  6e 61 6d 65 29 3b 0a 65  78 74 65 72 6e 20 76 6f  |name);.extern vo|
00000450  69 64 20 73 79 73 6c 6f  67 5f 69 72 71 6d 6f 64  |id syslog_irqmod|
00000460  65 28 69 6e 74 20 66 6c  61 67 29 3b 0a 65 78 74  |e(int flag);.ext|
00000470  65 72 6e 20 76 6f 69 64  20 73 79 73 6c 6f 67 66  |ern void syslogf|
00000480  28 63 6f 6e 73 74 20 63  68 61 72 20 2a 6c 6f 67  |(const char *log|
00000490  6e 61 6d 65 2c 20 69 6e  74 20 70 72 69 6f 72 69  |name, int priori|
000004a0  74 79 2c 20 63 6f 6e 73  74 20 63 68 61 72 20 2a  |ty, const char *|
000004b0  66 6f 72 6d 61 74 2c 0a  20 20 20 20 20 20 20 20  |format,.        |
000004c0  20 20 20 20 20 20 20 20  20 20 20 20 2e 2e 2e 29  |            ...)|
000004d0  3b 0a 65 78 74 65 72 6e  20 5f 6b 65 72 6e 65 6c  |;.extern _kernel|
000004e0  5f 6f 73 65 72 72 6f 72  20 2a 78 73 79 73 6c 6f  |_oserror *xsyslo|
000004f0  67 5f 6c 6f 67 6d 65 73  73 61 67 65 28 63 6f 6e  |g_logmessage(con|
00000500  73 74 20 63 68 61 72 20  2a 6c 6f 67 6e 61 6d 65  |st char *logname|
00000510  2c 0a 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |,.              |
00000520  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000530  20 20 20 20 20 20 20 20  20 20 20 20 63 6f 6e 73  |            cons|
00000540  74 20 63 68 61 72 20 2a  74 65 78 74 2c 20 69 6e  |t char *text, in|
00000550  74 20 70 72 69 6f 72 69  74 79 29 3b 0a 65 78 74  |t priority);.ext|
00000560  65 72 6e 20 5f 6b 65 72  6e 65 6c 5f 6f 73 65 72  |ern _kernel_oser|
00000570  72 6f 72 20 2a 78 73 79  73 6c 6f 67 5f 67 65 74  |ror *xsyslog_get|
00000580  6c 6f 67 6c 65 76 65 6c  28 63 6f 6e 73 74 20 63  |loglevel(const c|
00000590  68 61 72 20 2a 6c 6f 67  6e 61 6d 65 2c 0a 20 20  |har *logname,.  |
000005a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000005c0  20 20 20 20 20 20 20 20  20 20 69 6e 74 20 2a 70  |          int *p|
000005d0  72 69 6f 72 69 74 79 29  3b 0a 65 78 74 65 72 6e  |riority);.extern|
000005e0  20 5f 6b 65 72 6e 65 6c  5f 6f 73 65 72 72 6f 72  | _kernel_oserror|
000005f0  20 2a 78 73 79 73 6c 6f  67 5f 66 6c 75 73 68 6c  | *xsyslog_flushl|
00000600  6f 67 28 63 6f 6e 73 74  20 63 68 61 72 20 2a 6c  |og(const char *l|
00000610  6f 67 6e 61 6d 65 29 3b  0a 65 78 74 65 72 6e 20  |ogname);.extern |
00000620  5f 6b 65 72 6e 65 6c 5f  6f 73 65 72 72 6f 72 20  |_kernel_oserror |
00000630  2a 78 73 79 73 6c 6f 67  5f 73 65 74 6c 6f 67 6c  |*xsyslog_setlogl|
00000640  65 76 65 6c 28 63 6f 6e  73 74 20 63 68 61 72 20  |evel(const char |
00000650  2a 6c 6f 67 6e 61 6d 65  2c 0a 20 20 20 20 20 20  |*logname,.      |
00000660  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000680  20 20 20 20 20 20 69 6e  74 20 70 72 69 6f 72 69  |      int priori|
00000690  74 79 29 3b 0a 65 78 74  65 72 6e 20 5f 6b 65 72  |ty);.extern _ker|
000006a0  6e 65 6c 5f 6f 73 65 72  72 6f 72 20 2a 78 73 79  |nel_oserror *xsy|
000006b0  73 6c 6f 67 5f 6c 6f 67  75 6e 73 74 61 6d 70 65  |slog_logunstampe|
000006c0  64 28 63 6f 6e 73 74 20  63 68 61 72 20 2a 6c 6f  |d(const char *lo|
000006d0  67 6e 61 6d 65 2c 0a 20  20 20 20 20 20 20 20 20  |gname,.         |
000006e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000700  20 20 20 20 63 6f 6e 73  74 20 63 68 61 72 20 2a  |    const char *|
00000710  74 65 78 74 2c 20 69 6e  74 20 70 72 69 6f 72 69  |text, int priori|
00000720  74 79 29 3b 0a 65 78 74  65 72 6e 20 5f 6b 65 72  |ty);.extern _ker|
00000730  6e 65 6c 5f 6f 73 65 72  72 6f 72 20 2a 78 73 79  |nel_oserror *xsy|
00000740  73 6c 6f 67 5f 69 6e 64  65 6e 74 28 63 6f 6e 73  |slog_indent(cons|
00000750  74 20 63 68 61 72 20 2a  6c 6f 67 6e 61 6d 65 29  |t char *logname)|
00000760  3b 0a 65 78 74 65 72 6e  20 5f 6b 65 72 6e 65 6c  |;.extern _kernel|
00000770  5f 6f 73 65 72 72 6f 72  20 2a 78 73 79 73 6c 6f  |_oserror *xsyslo|
00000780  67 5f 75 6e 69 6e 64 65  6e 74 28 63 6f 6e 73 74  |g_unindent(const|
00000790  20 63 68 61 72 20 2a 6c  6f 67 6e 61 6d 65 29 3b  | char *logname);|
000007a0  0a 65 78 74 65 72 6e 20  5f 6b 65 72 6e 65 6c 5f  |.extern _kernel_|
000007b0  6f 73 65 72 72 6f 72 20  2a 78 73 79 73 6c 6f 67  |oserror *xsyslog|
000007c0  5f 6e 6f 69 6e 64 65 6e  74 28 63 6f 6e 73 74 20  |_noindent(const |
000007d0  63 68 61 72 20 2a 6c 6f  67 6e 61 6d 65 29 3b 0a  |char *logname);.|
000007e0  65 78 74 65 72 6e 20 5f  6b 65 72 6e 65 6c 5f 6f  |extern _kernel_o|
000007f0  73 65 72 72 6f 72 20 2a  78 73 79 73 6c 6f 67 5f  |serror *xsyslog_|
00000800  6f 70 65 6e 73 65 73 73  69 6f 6e 6c 6f 67 28 63  |opensessionlog(c|
00000810  6f 6e 73 74 20 63 68 61  72 20 2a 6c 6f 67 6e 61  |onst char *logna|
00000820  6d 65 2c 0a 20 20 20 20  20 20 20 20 20 20 20 20  |me,.            |
00000830  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000850  20 20 20 69 6e 74 20 70  72 69 6f 72 69 74 79 2c  |   int priority,|
00000860  20 63 68 61 72 20 2a 2a  73 65 73 73 69 6f 6e 29  | char **session)|
00000870  3b 0a 65 78 74 65 72 6e  20 5f 6b 65 72 6e 65 6c  |;.extern _kernel|
00000880  5f 6f 73 65 72 72 6f 72  20 2a 78 73 79 73 6c 6f  |_oserror *xsyslo|
00000890  67 5f 63 6c 6f 73 65 73  65 73 73 69 6f 6e 6c 6f  |g_closesessionlo|
000008a0  67 28 63 6f 6e 73 74 20  63 68 61 72 20 2a 6c 6f  |g(const char *lo|
000008b0  67 6e 61 6d 65 29 3b 0a  65 78 74 65 72 6e 20 5f  |gname);.extern _|
000008c0  6b 65 72 6e 65 6c 5f 6f  73 65 72 72 6f 72 20 2a  |kernel_oserror *|
000008d0  78 73 79 73 6c 6f 67 5f  6c 6f 67 64 61 74 61 28  |xsyslog_logdata(|
000008e0  63 6f 6e 73 74 20 63 68  61 72 20 2a 6c 6f 67 6e  |const char *logn|
000008f0  61 6d 65 2c 20 69 6e 74  20 70 72 69 6f 72 69 74  |ame, int priorit|
00000900  79 2c 0a 20 20 20 20 20  20 20 20 20 20 20 20 20  |y,.             |
00000910  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000920  20 20 20 20 20 20 20 20  20 20 20 63 6f 6e 73 74  |           const|
00000930  20 76 6f 69 64 20 2a 64  61 74 61 2c 20 75 6e 73  | void *data, uns|
00000940  69 67 6e 65 64 20 69 6e  74 20 73 69 7a 65 2c 0a  |igned int size,.|
00000950  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000970  20 20 20 20 20 20 20 20  69 6e 74 20 6f 66 66 73  |        int offs|
00000980  65 74 29 3b 0a 65 78 74  65 72 6e 20 5f 6b 65 72  |et);.extern _ker|
00000990  6e 65 6c 5f 6f 73 65 72  72 6f 72 20 2a 78 73 79  |nel_oserror *xsy|
000009a0  73 6c 6f 67 5f 72 65 61  64 65 72 72 6f 72 6d 65  |slog_readerrorme|
000009b0  73 73 61 67 65 28 69 6e  74 20 65 72 72 6e 75 6d  |ssage(int errnum|
000009c0  2c 20 63 68 61 72 20 2a  2a 6d 65 73 73 61 67 65  |, char **message|
000009d0  29 3b 0a 65 78 74 65 72  6e 20 5f 6b 65 72 6e 65  |);.extern _kerne|
000009e0  6c 5f 6f 73 65 72 72 6f  72 20 2a 78 73 79 73 6c  |l_oserror *xsysl|
000009f0  6f 67 5f 6c 6f 67 63 6f  6d 70 6c 65 74 65 28 63  |og_logcomplete(c|
00000a00  6f 6e 73 74 20 63 68 61  72 20 2a 6c 6f 67 6e 61  |onst char *logna|
00000a10  6d 65 29 3b 0a 65 78 74  65 72 6e 20 5f 6b 65 72  |me);.extern _ker|
00000a20  6e 65 6c 5f 6f 73 65 72  72 6f 72 20 2a 78 73 79  |nel_oserror *xsy|
00000a30  73 6c 6f 67 5f 69 72 71  6d 6f 64 65 28 69 6e 74  |slog_irqmode(int|
00000a40  20 66 6c 61 67 29 3b 0a  65 78 74 65 72 6e 20 5f  | flag);.extern _|
00000a50  6b 65 72 6e 65 6c 5f 6f  73 65 72 72 6f 72 20 2a  |kernel_oserror *|
00000a60  78 73 79 73 6c 6f 67 66  28 63 6f 6e 73 74 20 63  |xsyslogf(const c|
00000a70  68 61 72 20 2a 6c 6f 67  6e 61 6d 65 2c 20 69 6e  |har *logname, in|
00000a80  74 20 70 72 69 6f 72 69  74 79 2c 0a 20 20 20 20  |t priority,.    |
00000a90  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000aa0  20 20 20 20 20 20 20 20  20 20 20 20 20 63 6f 6e  |             con|
00000ab0  73 74 20 63 68 61 72 20  2a 66 6f 72 6d 61 74 2c  |st char *format,|
00000ac0  20 2e 2e 2e 29 3b 0a 0a  23 65 6e 64 69 66 0a     | ...);..#endif.|
00000acf