2022-02-06 20:05:29 -05:00
|
|
|
// Copyright 2018 Nicholas J. Kain <njkain at gmail dot com>
|
|
|
|
// SPDX-License-Identifier: MIT
|
2014-04-04 04:12:25 -04:00
|
|
|
#ifndef NDHC_SOCKD_H_
|
|
|
|
#define NDHC_SOCKD_H_
|
|
|
|
|
|
|
|
extern uid_t sockd_uid;
|
|
|
|
extern gid_t sockd_gid;
|
2022-01-11 22:35:19 -05:00
|
|
|
int request_sockd_fd(char *buf, size_t buflen, char *response);
|
2014-04-04 04:12:25 -04:00
|
|
|
void sockd_main(void);
|
|
|
|
|
2022-02-06 20:05:29 -05:00
|
|
|
#endif
|
|
|
|
|