posix-next API 0.1.0
Out-of-tree Zephyr POSIX module
Loading...
Searching...
No Matches
passwd Struct Reference

POSIX password database entry. More...

#include <zephyr/posix/pwd.h>

Data Fields

char * pw_name
 User's login name.
 
char * pw_passwd
 Encrypted password.
 
uid_t pw_uid
 Numerical user ID.
 
gid_t pw_gid
 Numerical group ID.
 
char * pw_comment
 User comment (unused).
 
char * pw_gecos
 Real name / GECOS field.
 
char * pw_dir
 Initial working directory.
 
char * pw_shell
 Program to use as shell.
 

Detailed Description

POSIX password database entry.

See also
https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pwd.h.html

Definition at line 32 of file pwd.h.

Field Documentation

◆ pw_comment

char* passwd::pw_comment

User comment (unused).

Definition at line 37 of file pwd.h.

◆ pw_dir

char* passwd::pw_dir

Initial working directory.

Definition at line 39 of file pwd.h.

◆ pw_gecos

char* passwd::pw_gecos

Real name / GECOS field.

Definition at line 38 of file pwd.h.

◆ pw_gid

gid_t passwd::pw_gid

Numerical group ID.

Definition at line 36 of file pwd.h.

◆ pw_name

char* passwd::pw_name

User's login name.

Definition at line 33 of file pwd.h.

◆ pw_passwd

char* passwd::pw_passwd

Encrypted password.

Definition at line 34 of file pwd.h.

◆ pw_shell

char* passwd::pw_shell

Program to use as shell.

Definition at line 40 of file pwd.h.

◆ pw_uid

uid_t passwd::pw_uid

Numerical user ID.

Definition at line 35 of file pwd.h.


The documentation for this struct was generated from the following file: