1732bccccc
It's a lot more common than BSD 2-clause it is both compatible and nearly identical in effect.
13 lines
282 B
C
13 lines
282 B
C
// Copyright 2018 Nicholas J. Kain <njkain at gmail dot com>
|
|
// SPDX-License-Identifier: MIT
|
|
#ifndef NDHC_SOCKD_H_
|
|
#define NDHC_SOCKD_H_
|
|
|
|
extern uid_t sockd_uid;
|
|
extern gid_t sockd_gid;
|
|
int request_sockd_fd(char *buf, size_t buflen, char *response);
|
|
void sockd_main(void);
|
|
|
|
#endif
|
|
|