Displaying 2 results from an estimated 2 matches for "fc_ucr".
Did you mean:
fc_fcp
2015 Sep 27
2
v2.2.19 release candidate released
Timo,
I have to test something on one of the BSD, namely related to src/lib/net.c .
--
Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca
God,Queen and country!Never Satan President Republic!Beware AntiChrist rising!
http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism
Time for Stephen to move on on Oct 19 2015!!
2015 Sep 27
0
v2.2.19 release candidate released
...available */
#define FSCRED ((struct ucred *)-1) /* filesystem credential */
struct fcred {
uid_t fc_ruid; /* real user id */
gid_t fc_rgid; /* real group id */
char fc_login[MAXLOGNAME]; /* setlogin() name */
struct ucred fc_ucred;
};
#define fc_uid fc_ucred.cr_uid /* effective user id */
#define fc_ngroups fc_ucred.cr_ngroups /* number of groups */
#define fc_groups fc_ucred.cr_groups /* groups */
#define fc_gid fc_ucred.cr_gid /* effective group id */
#ifdef KERNEL
#define crhold(cr) (cr)->...