Home
last modified time | relevance | path

Searched refs:anonymous (Results 1 – 25 of 66) sorted by relevance

123

/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Dftpaccess8 class anonusers anonymous *
19 recvbuf 65536 real,guest,anonymous
20 sendbuf 65536 real,guest,anonymous
21 # flush-wait no anonymous
34 chmod no anonymous
35 delete no anonymous
36 overwrite no anonymous
37 rename no anonymous
38 umask no anonymous
43 path-filter guest,anonymous /etc/ftpd/filename.msg ^[[:alnum:]._-]*$ ^[.-]
[all …]
H A Dftpd.c313 int anonymous = 1; variable
1877 anonymous = 0;
2012 anonymous = 1; /* for the access_ok call */
2501 if (!anonymous && pamh) {
2513 anonymous = 0;
2673 if (!anonymous) { /* "ftp" is only account allowed no password */
2716 anonymous = 0;
3019 if (anonymous && use_accessfile) { /* see above. _H */
3024 anonymous = !guest;
3061 if (!anonymous)
[all …]
H A Daccess.c92 extern int nameserved, anonymous, guest, TCPwindowsize, use_accessfile;
582 if (anonymous && strcasestr(ARG1, "anonymous")) in acl_setfunctions()
586 if (!guest && !anonymous && strcasestr(ARG1, "real")) in acl_setfunctions()
593 if (strcasestr(ARG1, "anonymous") && anonymous) in acl_setfunctions()
597 if (strcasestr(ARG1, "real") && !guest && !anonymous) in acl_setfunctions()
611 if (strcasestr(ARG1, "anonymous") && anonymous) in acl_setfunctions()
615 if (strcasestr(ARG1, "real") && !guest && !anonymous) in acl_setfunctions()
644 if (anonymous && strcasestr(ARG1, "anonymous") && in acl_getclass()
651 if (!guest && !anonymous && strcasestr(ARG1, "real") && in acl_getclass()
H A Dextensions.c113 pdata, anonymous, guest;
329 if (xferdone && anonymous) in msg_massage()
1077 if (len == 9 && anonymous && strncasecmp(start, "anonymous", 9) == 0) in type_match()
1081 if (len == 4 && !guest && !anonymous && in type_match()
1441 if (anonymous && (match_value < 0)) {
1647 if (anonymous) {
1659 int pdelete = (anonymous ? 0 : 1);
1664 if (anonymous) {
H A Dftpcmd.y86 extern int anonymous;
250 if (anonymous)
624 if (anonymous && dolreplies)
640 if (anonymous && dolreplies)
846 int ok = (anonymous ? 0 : 1);
854 if (anonymous) {
877 if (anonymous) {
2053 anonymous ? guestpw : authuser, remoteident);
/onnv-gate/usr/src/lib/librstp/common/
H A DREADME.CVS.HOWTO4 anonymous (pserver) CVS with the following instruction set. The module
6 for a password for anonymous, simply press the Enter key.
8 cvs -d:pserver:anonymous@cvs.rstplib.sourceforge.net:/cvsroot/rstplib login
10 cvs -z3 -d:pserver:anonymous@cvs.rstplib.sourceforge.net:/cvsroot/rstplib co modulename
/onnv-gate/usr/src/cmd/cmd-inet/etc/
H A Dipqosconf.1.sample31 # Mail traffic is marked for AF11, anonymous user FTP traffic for AF12 and news
41 # is the one used by the ftp server for anonymous logins, thus filtering on
42 # this enables us to capture anonymous ftp user traffic.
80 # This filter catches anonymous ftp user outgoing traffic.
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/lib/warnings/
H A Dpp24 Constant subroutine (anonymous) undefined
70 Odd number of elements in anonymous hash at - line 3.
98 Constant subroutine (anonymous) undefined at - line 4.
H A Dpp_hot44 Deep recursion on anonymous subroutine [Perl_sub_crush_depth]
251 Deep recursion on anonymous subroutine at - line 5.
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dperlref.pod79 A reference to an anonymous array can be created using square
84 Here we've created a reference to an anonymous array of three elements
85 whose final element is itself a reference to another anonymous array of three
104 A reference to an anonymous hash can be created using curly
144 A reference to an anonymous subroutine can be created by using
154 anonymous subroutine.)
158 is a notion out of the Lisp world that says if you define an anonymous
191 time the anonymous subroutine runs. That's what a closure is all
252 anonymous scalar if $foo hasn't been used yet. This might change in a
428 anonymous array containing the results of the call to C<mysub(1,2,3)>. So
[all …]
H A Dperlreftut.pod122 C<[ ITEMS ]> makes a new, anonymous array, and returns a reference to
123 that array. C<{ ITEMS }> makes a new, anonymous hash, and returns a
147 If you write just C<[]>, you get a new, empty anonymous array.
148 If you write just C<{}>, you get a new, empty anonymous hash.
249 First, remember that C<[1, 2, 3]> makes an anonymous array containing
371 empty anonymous array of cities, and installs a reference to it into
403 makes a new, empty, anonymous array for you, installs it into
450 This uses C<[...]> notation to create a new anonymous array, and
454 Similarly, to copy an anonymous hash, you can use
H A Dperlbot.pod80 An anonymous array or anonymous hash can be used to hold instance
118 An anonymous scalar can be used when only one instance variable is needed.
H A Dperlfaq7.pod158 anonymous) hash reference. See L<perlref> and L<perldsc> for details.
161 $person = {}; # new anonymous hash
200 hard-to-explain meaning. Closures are implemented in Perl as anonymous
207 Note that some languages provide anonymous functions but are not
223 slots left out to be filled later. The anonymous subroutine returned
228 returned anonymous function contains a reference to a lexical variable
291 reference to an existing or anonymous variable or function:
513 In deep binding, lexical variables mentioned in anonymous subroutines
H A Dperl5004delta.pod509 Prior to the 5.004 release, nested anonymous functions didn't work
514 Just like anonymous functions that contain lexical variables
1490 (W) An inner (nested) I<anonymous> subroutine is inside a I<named>
1491 subroutine, and outside that is another subroutine; and the anonymous
1497 If the anonymous subroutine is called or referenced (directly or
1499 as you would expect. But if the anonymous subroutine is called or
1506 subroutine anonymous, using the C<sub {}> syntax. Perl has specific
1507 support for shared variables in nested anonymous subroutines; a named
1522 Furthermore, if the outer subroutine is anonymous and references a
1527 anonymous, using the C<sub {}> syntax. When inner anonymous subs that
H A Dperlintern.pod21 CV (if any). Because pointers to anonymous sub prototypes are
31 There is a further complication with non-closure anonymous subs (ie those
33 anonymous prototype is shared rather than being cloned. This has the
H A Dperlsub.pod19 To define an anonymous subroutine at runtime:
42 generated on the fly using C<eval> or anonymous subroutines.
391 a closure (an anonymous function that accesses enclosing lexicals).
394 an anonymous sub reference:
788 See the Symbol module for a way to create anonymous symbol table
1004 C<&> requires an anonymous subroutine, which, if passed as the first
1057 scoped, those anonymous subroutines can act like closures... (Gee,
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Danonsub.t62 if ($@ =~ /^Illegal declaration of anonymous subroutine at/) {
/onnv-gate/usr/src/common/openssl/doc/ssl/
H A DSSL_get_peer_certificate.pod23 L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>). If an anonymous cipher
H A DSSL_CIPHER_get_name.pod66 representation of anonymous ciphers.
H A DSSL_CTX_set_verify.pod52 B<Client mode:> if not using an anonymous cipher (by default disabled), the
72 anonymous cipher is used, SSL_VERIFY_PEER is ignored.
/onnv-gate/usr/src/common/openssl/doc/apps/
H A Dciphers.pod159 the cipher suites offering no authentication. This is currently the anonymous
200 cipher suites using DH, including anonymous DH.
204 anonymous DH cipher suites.
367 Include all ciphers except NULL and anonymous DH then sort by
H A Ds_server.pod115 cipher suites available to the anonymous ones (currently just anonymous
/onnv-gate/usr/src/uts/sun4v/ml/
H A Dmach_offsets.in63 \ There is currently no manner in which to identify "anonymous"
/onnv-gate/usr/src/common/openssl/crypto/rc4/
H A Drrc4.doc19 On Saturday morning an anonymous cypherpunk wrote:
106 Another cypherpunk, this one not anonymous, tested the
/onnv-gate/usr/src/uts/sun4u/ml/
H A Dmach_offsets.in63 \ There is currently no manner in which to identify "anonymous"

123