| /NextBSD/crypto/heimdal/appl/login/ |
| HD | ChangeLog | 36 * loginpaths.h: Shared paths between login and rshd. 40 * login.c: log successful logins 44 * login.c (do_login): only do krb4_get_afs_tokens if we have done 51 * login.c: Include <crypt.h>. 64 * login.1: document limits.conf 70 * login.c: read limits.conf (from /etc/security by default, 71 overridable in login.conf) 77 * login.c: use krb5_appdefault_boolean instead of 82 * login.c (krb5_to4): set client princ of the mcred 86 * login.c (krb5_to4): use krb5_cc_clear_mcred [all …]
|
| /NextBSD/sys/dev/firewire/ |
| HD | sbp_targ.c | 205 struct sbp_targ_login *login; member 262 sbp_targ_dealloc_login(struct sbp_targ_login *login) in sbp_targ_dealloc_login() argument 266 if (login == NULL) { in sbp_targ_dealloc_login() 270 for (orbi = STAILQ_FIRST(&login->orbs); orbi != NULL; orbi = next) { in sbp_targ_dealloc_login() 277 callout_stop(&login->hold_callout); in sbp_targ_dealloc_login() 279 STAILQ_REMOVE(&login->lstate->logins, login, sbp_targ_login, link); in sbp_targ_dealloc_login() 280 login->lstate->sc->logins[login->id] = NULL; in sbp_targ_dealloc_login() 282 printf("%s: free login %p\n", __func__, login); in sbp_targ_dealloc_login() 283 free((void *)login, M_SBP_TARG); in sbp_targ_dealloc_login() 284 login = NULL; in sbp_targ_dealloc_login() [all …]
|
| /NextBSD/cddl/contrib/dtracetoolkit/Examples/ |
| HD | setuids_example.txt | 6 0 100 3037 3040 in.telnetd login -p -h mars -d /dev/pts/12 10 0 100 3065 3067 in.rlogind login -d /dev/pts/12 -r mars 11 0 100 3071 3073 in.rlogind login -d /dev/pts/12 -r mars 12 0 102 3078 3081 in.telnetd login -p -h mars -d /dev/pts/12 15 The first line is a telnet login to the user brendan, UID 100. The parent 17 command that in.telnetd runs is "login". 23 The fourth line is an example of an ssh login. 27 The last line is another example of a telnet login for fred, UID 102.
|
| /NextBSD/usr.sbin/adduser/ |
| HD | rmuser.sh | 67 verbose && echo -n "Removing files owned by ($login) in $_dir:" 68 filecount=`find 2>/dev/null "$_dir" -user "$login" -delete -print | 84 verbose && echo -n "Removing mail spool(s) for ($login):" 86 verbose && echo -n " ${MAILSPOOL}/$login" || 91 verbose && echo -n " ${MAILSPOOL}/.${login}.pop" || 105 verbose && echo -n "Terminating all processes owned by ($login):" 125 verbose && echo -n "Removing at(1) jobs owned by ($login):" 141 verbose && echo -n "Removing crontab for ($login):" 143 verbose && echo -n " ${CRONJOBDIR}/$login" || echo -n " crontab" 175 verbose && echo -n "Removing user ($login)"
|
| /NextBSD/tools/tools/nanobsd/pcengines/Files/root/ |
| HD | .login | 3 # .login - csh login script, read by login shell, after `.cshrc' at login. 8 # Uncomment to display a random cookie each login:
|
| /NextBSD/etc/root/ |
| HD | dot.login | 3 # .login - csh login script, read by login shell, after `.cshrc' at login. 8 # Uncomment to display a random cookie each login:
|
| /NextBSD/share/skel/ |
| HD | dot.login | 3 # .login - csh login script, read by login shell, after `.cshrc' at login.
|
| /NextBSD/release/picobsd/tinyware/login/ |
| HD | README | 3 This is a modified login version for PicoBSD purposes, which does 5 The "login.c" file is replaced by pico-login.c in this directory, 6 the remaining files are taken from usr.bin/login/
|
| /NextBSD/share/examples/etc/ |
| HD | README.examples | 15 csh.login - sample .login 22 fbtab - configuration file for login(1) 32 login.access - configuration file for login(8) (see login.access(5)) 33 login.conf - login class capabilities database (see login.conf(5))
|
| /NextBSD/libexec/ulog-helper/ |
| HD | ulog-helper.c | 53 const char *login; in get_username() local 63 if ((login = getlogin()) != NULL && (pw = getpwnam(login)) != NULL && in get_username() 65 return (login); in get_username()
|
| /NextBSD/contrib/opie/ |
| HD | opieinfo.c | 53 char *login; variable 55 login = getlogin(); 56 if (login == NULL) { 60 return login;
|
| /NextBSD/usr.sbin/pw/ |
| HD | pw_nis.c | 86 chgnispwent(const char *path, char const * login, struct passwd * pwd) in chgnispwent() argument 88 return pw_nisupdate(path, pwd, login); in chgnispwent() 92 delnispwent(const char *path, const char *login) in delnispwent() argument 94 return pw_nisupdate(path, NULL, login); in delnispwent()
|
| /NextBSD/crypto/openssl/ssl/ |
| HD | tls_srp.c | 71 OPENSSL_free(ctx->srp_ctx.login); in SSL_CTX_SRP_CTX_free() 92 ctx->srp_ctx.login = NULL; in SSL_CTX_SRP_CTX_free() 103 OPENSSL_free(s->srp_ctx.login); in SSL_SRP_CTX_free() 124 s->srp_ctx.login = NULL; in SSL_SRP_CTX_free() 156 s->srp_ctx.login = NULL; in SSL_SRP_CTX_init() 179 if ((ctx->srp_ctx.login != NULL) && in SSL_SRP_CTX_init() 180 ((s->srp_ctx.login = BUF_strdup(ctx->srp_ctx.login)) == NULL)) { in SSL_SRP_CTX_init() 188 OPENSSL_free(s->srp_ctx.login); in SSL_SRP_CTX_init() 221 ctx->srp_ctx.login = NULL; in SSL_CTX_SRP_CTX_init() 392 if (!(x = SRP_Calc_x(s->srp_ctx.s, s->srp_ctx.login, passwd))) in SRP_generate_client_master_secret() [all …]
|
| /NextBSD/etc/ |
| HD | login.access | 8 # permissions field of that table entry determines whether the login will 11 # Format of the login access control table is three fields separated by a 17 # character. The second field should be a list of one or more login names, 41 # Some accounts are not allowed to login from anywhere: 45 # All other accounts are allowed to login from anywhere.
|
| HD | csh.login | 3 # System-wide .login file for csh(1). 9 # login.conf(5) and in particular the charset and lang options.
|
| /NextBSD/usr.sbin/nscd/agents/ |
| HD | passwd.c | 134 char *login; in passwd_lookup_func() local 153 login = calloc(1, size); in passwd_lookup_func() 154 assert(login != NULL); in passwd_lookup_func() 155 memcpy(login, key + sizeof(enum nss_lookup_type), size - 1); in passwd_lookup_func() 173 result = getpwnam(login); in passwd_lookup_func() 174 free(login); in passwd_lookup_func()
|
| /NextBSD/usr.bin/write/ |
| HD | write.c | 244 const char *login; in do_write() local 252 if ((login = getlogin()) == NULL) { in do_write() 254 login = pwd->pw_name; in do_write() 256 login = "???"; in do_write() 273 login, host, mytty, nows + 11); in do_write()
|
| /NextBSD/share/examples/ppp/ |
| HD | ppp.conf.sample | 42 # is required by the server either using a unix-style login procedure 47 # use a unix-style login script: 73 # The login script shown says that you're expecting ``ogin:''. If you 76 # You *MUST* customise this login script according to your local 81 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp" 87 # If you want to use PAP or CHAP instead of using a unix-style login 95 set login 115 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp" 129 set authname "somename" # Replace these with your login name & password. 141 set login [all …]
|
| /NextBSD/gnu/usr.bin/rcs/rcs/ |
| HD | rcs.c | 231 char const *login; member 349 getchaccess(str_save(AccessList->login),append); 705 getchaccess(login, command) in getchaccess() argument 706 char const *login; in getchaccess() 712 pt->login = login; 979 if (!ch->login) { in doaccess() 986 if (strcmp(ch->login, t->login) == 0) { in doaccess() 996 t->login = ch->login; in doaccess() 1000 } else if (strcmp(ch->login, t->login) == 0) in doaccess() 1092 strcmp(getcaller(),next->login) != 0 [all …]
|
| /NextBSD/contrib/apr-util/dbd/ |
| HD | apr_dbd_freetds.c | 542 LOGINREC *login; in freetds_open() local 554 login = dblogin(); in freetds_open() 555 if (login == NULL) { in freetds_open() 578 DBSETLUSER(login, buf); in freetds_open() 581 DBSETLPWD(login, buf); in freetds_open() 584 DBSETLAPP(login, buf); in freetds_open() 590 DBSETLHOST(login, buf); in freetds_open() 593 DBSETLCHARSET(login, buf); in freetds_open() 596 DBSETLNATLANG(login, buf); in freetds_open() 607 process = dbopen(login, server); in freetds_open() [all …]
|
| /NextBSD/lib/libcapsicum/ |
| HD | libcapsicum_pwd.c | 135 cap_getpwcommon_r(cap_channel_t *chan, const char *cmd, const char *login, in cap_getpwcommon_r() argument 149 nvlist_add_string(nvl, "name", login); in cap_getpwcommon_r() 204 cap_getpwcommon(cap_channel_t *chan, const char *cmd, const char *login, in cap_getpwcommon() argument 212 error = cap_getpwcommon_r(chan, cmd, login, uid, &gpwd, gbuffer, in cap_getpwcommon() 232 cap_getpwnam(cap_channel_t *chan, const char *login) in cap_getpwnam() argument 235 return (cap_getpwcommon(chan, "getpwnam", login, 0)); in cap_getpwnam()
|
| /NextBSD/contrib/netbsd-tests/usr.bin/id/ |
| HD | pwgr.c | 150 getpwnam(const char *login) in getpwnam() argument 155 if (strcmp(login, "root") == 0) { in getpwnam() 159 } else if (strcmp(login, "test") == 0) { in getpwnam()
|
| /NextBSD/contrib/dma/ |
| HD | net.c | 250 smtp_login(int fd, char *login, char* password) in smtp_login() argument 255 res = smtp_auth_md5(fd, login, password); in smtp_login() 277 len = base64_encode(login, strlen(login), &temp); in smtp_login() 423 syslog(LOG_INFO, "using SMTP authentication for user %s", a->login); in deliver_to_host() 424 error = smtp_login(fd, a->login, a->password); in deliver_to_host()
|
| /NextBSD/usr.bin/newgrp/ |
| HD | newgrp.c | 74 int ch, login; in main() local 84 login = 0; in main() 89 login = 1; in main() 114 if (login) in main()
|
| /NextBSD/gnu/usr.bin/rcs/rlog/ |
| HD | rlog.c | 161 char const * login; /* lockerlist */ member 171 char const * login; /* stored in authorlist */ member 413 aprintf(out, symbolFormat, currlock->login, 423 aprintf(out, accessFormat, curaccess->login); 768 newlocker->login = argv; 796 authorlist->login = getusername(false); 804 newauthor->login = argv; 866 if (strcmp(plocker->login, p->login) == 0) { in trunclocks() 975 while (strcmp(pauthor->login, pdelta->author) != 0)
|