Searched refs:username (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/bpalogin/
H A Dbpalogin.conf6 username yourname
/asus-wl-520gu-7.0.1.45/src/router/LPRng/UTILS/
H A Dncpprint18 # The username and password information are in an 'authfile'
32 # username=fred
48 # get username and password values
54 if [ "$username" != "" ]; then
56 usercmd="-U $username -P $password"
58 usercmd="-U $username -n"
H A Datalkprint26 # username=printer printer
34 # username=username for authentication
47 /usr/bin/pap -p "$username:$printer@$host"
H A Dsmbprint18 # Variation 2: LPRng + smbclient -U username password
42 # The authentication file (authfile) holds the username and
46 # username=name
88 # ${username:+-U} ${username:+username} ${hostip:+-I} $hostip -N ${workgroup:+-W} $workgroup \
91 ${username:+-U} ${username} ${hostip:+-I} $hostip -N ${workgroup:+-W} $workgroup \
95 # ${username:+-U} ${username
[all...]
H A Dlprm_in_perl17 $options, $SOCK, $line, $prefix, $firstpart, $count, $username, %Args
42 $username = getpwuid($UID);
47 printf "%d%s %s%s\n", $option, $pr, $username, $options ? (" " . $options) : "" if $Debug;
48 printf $SOCK "%c%s %s%s\n", $option, $pr, $username, $options ? (" " . $options) : "";
H A Dlprm_in_perl.in17 $options, $SOCK, $line, $prefix, $firstpart, $count, $username, %Args
42 $username = getpwuid($UID);
47 printf "%d%s %s%s\n", $option, $pr, $username, $options ? (" " . $options) : "" if $Debug;
48 printf $SOCK "%c%s %s%s\n", $option, $pr, $username, $options ? (" " . $options) : "";
/asus-wl-520gu-7.0.1.45/src/router/pppd/pppd/plugins/radius/radiusclient/src/
H A Dlocal.c20 LFUNC auth_local(char *username, char *passwd) argument
28 if ((pw = getpwnam(username)) == NULL) {
30 rc_log(LOG_NOTICE, "authentication FAILED, type local, username %s", username);
39 rc_log(LOG_NOTICE, "authentication FAILED, type local, username %s", username);
53 rc_log(LOG_NOTICE, "authentication FAILED, type local, username %s", username);
58 rc_log(LOG_NOTICE, "authentication OK, type local, username %s", username);
65 local_login(char *username) argument
[all...]
H A Dradexample.c27 char username[128]; local
53 strncpy(username, rc_getstr ("login: ",1), sizeof(username));
62 strncpy(username_realm, username, sizeof(username_realm));
94 fprintf(stderr, "\"%s\" RADIUS Authentication OK\n", username);
98 fprintf(stderr, "\"%s\" RADIUS Authentication failure (RC=%i)\n", username, result);
H A Dradius.c20 LFUNC auth_radius(UINT4 client_port, char *username, char *passwd) argument
38 /* determine based on the username what kind of service is requested.
43 switch (*username)
49 username++;
55 username++;
61 username++;
98 strncpy(username_realm, username, sizeof(username_realm));
129 rc_add_env(env, "RADIUS_USER_NAME", username);
188 rc_log(LOG_NOTICE, "authentication OK, username %s, service %s%s%s",
189 username, service_st
219 radius_login(char *username) argument
[all...]
H A Dradlogin.c186 char username[128]; local
278 strncpy(username,argv[optind], sizeof(username));
282 *username = '\0';
328 while (!*username) {
331 strncpy(username, p, sizeof(username));
347 login_func = auth_local(username, passwd);
351 login_func = auth_radius(client_port, username, passwd);
355 login_func = auth_radius(client_port, username, passw
[all...]
/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/pppd/plugins/radius/radiusclient/src/
H A Dlocal.c20 LFUNC auth_local(char *username, char *passwd) argument
28 if ((pw = getpwnam(username)) == NULL) {
30 rc_log(LOG_NOTICE, "authentication FAILED, type local, username %s", username);
39 rc_log(LOG_NOTICE, "authentication FAILED, type local, username %s", username);
53 rc_log(LOG_NOTICE, "authentication FAILED, type local, username %s", username);
58 rc_log(LOG_NOTICE, "authentication OK, type local, username %s", username);
65 local_login(char *username) argument
[all...]
H A Dradexample.c27 char username[128]; local
53 strncpy(username, rc_getstr ("login: ",1), sizeof(username));
62 strncpy(username_realm, username, sizeof(username_realm));
94 fprintf(stderr, "\"%s\" RADIUS Authentication OK\n", username);
98 fprintf(stderr, "\"%s\" RADIUS Authentication failure (RC=%i)\n", username, result);
H A Dradius.c20 LFUNC auth_radius(UINT4 client_port, char *username, char *passwd) argument
38 /* determine based on the username what kind of service is requested.
43 switch (*username)
49 username++;
55 username++;
61 username++;
98 strncpy(username_realm, username, sizeof(username_realm));
129 rc_add_env(env, "RADIUS_USER_NAME", username);
188 rc_log(LOG_NOTICE, "authentication OK, username %s, service %s%s%s",
189 username, service_st
219 radius_login(char *username) argument
[all...]
H A Dradlogin.c186 char username[128]; local
278 strncpy(username,argv[optind], sizeof(username));
282 *username = '\0';
328 while (!*username) {
331 strncpy(username, p, sizeof(username));
347 login_func = auth_local(username, passwd);
351 login_func = auth_radius(client_port, username, passwd);
355 login_func = auth_radius(client_port, username, passw
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/examples/printing/
H A Dsmbprint73 # username (optional)
84 if [ "x$username" == "x" ] ; then
85 username="$server";
142 -U $username \
H A Dsmbprint-new.sh73 # username (optional)
84 if [ "x$username" == "x" ] ; then
85 username="$server";
142 -U $username \
/asus-wl-520gu-7.0.1.45/src/router/samba/source/libsmb/
H A Dlibsmb_cache.c40 char *username; member in struct:smbc_server_cache
54 const char * workgroup, const char * username)
86 srvcache->username = strdup(username);
87 if (!srvcache->username) {
99 SAFE_FREE(srvcache->username);
121 strcmp(user, srv->username) == 0)
146 SAFE_FREE(srv->username);
52 smbc_add_cached_server(SMBCCTX * context, SMBCSRV * new, const char * server, const char * share, const char * workgroup, const char * username) argument
H A Dntlm_check.c159 * @param username internal Samba username, for log messages
160 * @param client_username username the client used
172 const char *username,
182 username));
190 username));
198 username));
204 username));
221 username));
225 DEBUG(3, ("Plaintext authentication for user %s attempted, but neither NT nor LM passwords available\n", username));
168 ntlm_password_check(TALLOC_CTX *mem_ctx, const DATA_BLOB *challenge, const DATA_BLOB *lm_response, const DATA_BLOB *nt_response, const char *username, const char *client_username, const char *client_domain, const uint8 *lm_pw, const uint8 *nt_pw, DATA_BLOB *user_sess_key, DATA_BLOB *lm_sess_key) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/pppd/pppd/plugins/radius/radiusclient/login.radius/migs/
H A Dip-down14 my ($sessionid, $username, $port, $portid, $timeout) = split (/:/, $ARGV[5]);
27 # The session ID, username, raw port and ID are given to this script
52 "User-Name = \"$username\"\n" .
H A Dip-up40 my ($sessionid, $username, $port, $portid, $timeout, $routelist) =
89 # The session ID, username, raw port and ID are given to this script
98 "User-Name = \"$username\"\n" .
109 # Store the username, the connection type, the IP address, the PID of pppd.
115 $s{$portid} = join (':', $username, "Framed-User/PPP", $ARGV[4], getppid (),
/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/pppd/plugins/radius/radiusclient/login.radius/migs/
H A Dip-down14 my ($sessionid, $username, $port, $portid, $timeout) = split (/:/, $ARGV[5]);
27 # The session ID, username, raw port and ID are given to this script
52 "User-Name = \"$username\"\n" .
H A Dip-up40 my ($sessionid, $username, $port, $portid, $timeout, $routelist) =
89 # The session ID, username, raw port and ID are given to this script
98 "User-Name = \"$username\"\n" .
109 # Store the username, the connection type, the IP address, the PID of pppd.
115 $s{$portid} = join (':', $username, "Framed-User/PPP", $ARGV[4], getppid (),
/asus-wl-520gu-7.0.1.45/src/router/samba/source/include/
H A Dsession.h31 fstring username; member in struct:sessionid
/asus-wl-520gu-7.0.1.45/src/router/samba/source/script/
H A Dsmbtar29 username=$LOGNAME # Default: same user name as in *nix
60 -u <user> Specify User Name $username
133 username="$OPTARG"
163 eval $SMBCLIENT "'\\\\$server\\$service'" "'$password'" -U "'$username'" \
/asus-wl-520gu-7.0.1.45/src/router/samba/source/smbwrapper/
H A Dsmbw.h39 char *username; member in struct:smbw_server
68 char **workgroup, char **username,

Completed in 198 milliseconds

1234567891011>>