/
githubmirror
/
gssproxy
Обзор
Документация
Войти
/
githubmirror
/
gssproxy
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/gp_creds.h
21 строка
403 B
Robbie Harwood
Fix formatting on noncompliant copyright lines
04 сен 2015, 23:34
04 сен 2015, 23:34
281ef83
Код
Авторство
О чём код?
/* Copyright (C) 2011 the GSS-PROXY contributors, see COPYING for license */ #ifndef _GP_CREDS_H_ #define _GP_CREDS_H_ #include "config.h" #include <stdint.h> #include <stdbool.h> #include <errno.h> #include <gssapi/gssapi.h> #define CRED_TYPE_NONE 0x00 #define CRED_TYPE_UNIX 0x01 #define CRED_TYPE_SELINUX 0x02 struct gp_creds { int type; struct ucred ucred; }; #endif /* _GP_CREDS_H_ */