blob: ae0784818a20060793102bbc8f0ae53017bb1a6d [file] [log] [blame]
jjakoa760e322003-04-11 09:43:22 +00001/*
2 * Syslog functions.
3 * Copyright (C) 2003 Mondru AB.
4 *
5 * The contents of this file may be used under the terms of the GNU
6 * General Public License Version 2, provided that the above copyright
7 * notice and this permission notice is included in all copies or
8 * substantial portions of the software.
9 *
10 * The initial developer of the original code is
11 * Jens Jakobsen <jj@openggsn.org>
12 *
13 * Contributor(s):
14 *
15 */
16
17#ifndef _SYSERR_H
18#define _SYSERR_H
19
20#define SYSERR_MSGSIZE 256
21
22void sys_err(int pri, char *filename, int en, int line, char *fmt, ...);
23void sys_errpack(int pri, char *fn, int ln, int en, struct sockaddr_in *peer,
24 void *pack, unsigned len, char *fmt, ...);
25
26#endif /* !_SYSERR_H */