/usr/include/atheme/uid.h is in atheme-services 7.2.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /*
* Copyright (c) 2011 William Pitcock <nenolod@dereferenced.org>.
* Rights to this code are as documented in doc/LICENSE.
*
* UID provider stuff.
*/
#ifndef ATHEME_UID_H
#define ATHEME_UID_H
typedef struct {
void (*uid_init)(const char *sid);
const char *(*uid_get)(void);
} uid_provider_t;
extern uid_provider_t *uid_provider_impl;
#endif
|