X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=nss%2Fcash_nss.h;fp=nss%2Fcash_nss.h;h=c21142c3f9fe6a6b519272609517d602ca33e063;hb=4e4725f0f28f60af004efb6e481008715ef5a673;hp=0000000000000000000000000000000000000000;hpb=b2b08613191a623b6b1ec522ec94b6bf7ca46569;p=nsscash%2Fnsscash.git diff --git a/nss/cash_nss.h b/nss/cash_nss.h new file mode 100644 index 0000000..c21142c --- /dev/null +++ b/nss/cash_nss.h @@ -0,0 +1,33 @@ +/* + * NSS function definitions provided by this NSS module + * + * Copyright (C) 2019 Simon Ruderich + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#ifndef CASH_NSS_H +#define CASH_NSS_H + +#include +#include + + +enum nss_status _nss_cash_setpwent(int); +enum nss_status _nss_cash_endpwent(void); +enum nss_status _nss_cash_getpwent_r(struct passwd *result, char *buffer, size_t buflen, int *errnop); +enum nss_status _nss_cash_getpwuid_r(uid_t uid, struct passwd *result, char *buffer, size_t buflen, int *errnop); +enum nss_status _nss_cash_getpwnam_r(const char *name, struct passwd *result, char *buffer, size_t buflen, int *errnop); + +#endif