DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T a

⟦fd6fa9f79⟧ TextFile

    Length: 636 (0x27c)
    Types: TextFile
    Names: »account.h«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec8/mcp/src/account.h« 

TextFile

struct account {
	int	ac_uid;
	int	ac_gid;
	addr	ac_name;			/* login name */
	addr	ac_gecos;			/* pw_gecos */
	addr	ac_realname;			/* in real life... */
	addr	ac_passwd;			/* encrypted password */
	addr	ac_id;				/* unqiue id (e.g. SSN) */
	addr	ac_dir;				/* home directory */
	addr	ac_shell;			/* login shell */
	struct 	list 	ac_groups;
	struct	list	ac_classes;
	struct	list	ac_sigs;
#ifdef SENDMAIL
	/*
	 * Alias memberships that were not obtained indirectly through
	 * class, sig, or group bindings.
	 */
	struct	list	ac_aliases;
#endif
	struct	lastlog ac_ll;
};

struct account *getacent(), *getacuid(), *getacid(), *getacnam();