blob: fe7a1378d2537f1fd2bb55948a8b88da6fe2b835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
TACACS+ D-Bus Daemon code
Copyright (c) 2019 AT&T Intellectual Property.
Copyright (c) 2015-2016 Brocade Communications Systems, Inc.
SPDX-License-Identifier: GPL-2.0-only
*/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <sys/stat.h>
#include <unistd.h>
/* prototypes */
extern void daemonize(const char *tacplus_pid);
|