aboutsummaryrefslogtreecommitdiffstats
path: root/testing/sssd/nss.h
blob: e15ee3ee34e0027c6474fccc6242443147f3f292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef NSS__H
#define NSS__H

#include <nss/nss.h>

enum nss_status
{
    NSS_STATUS_TRYAGAIN = -2,
    NSS_STATUS_UNAVAIL = -1,
    NSS_STATUS_NOTFOUND = 0,
    NSS_STATUS_SUCCESS = 1,
    NSS_STATUS_RETURN = 2
};

#endif