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