/titanic_41/usr/src/cmd/ipf/examples/ |
H A D | example.3 | 6 # pass through packets to and from localhost. 8 pass in from 127.0.0.1/32 to 127.0.0.1/32 13 pass in from 10.1.3.1/32 to any 14 pass in from 10.1.3.2/32 to any 15 pass in from 10.1.3.3/32 to any 16 pass in from 10.1.3.4/32 to any 17 pass in from 10.1.3.5/32 to any 18 pass in from 10.1.0.13/32 to any 19 pass in from 10.1.1.1/32 to any 20 pass in from 10.1.2.1/32 to any [all …]
|
H A D | BASIC_1.FW | 41 pass in quick on lo0 all 42 pass out quick on lo0 all 60 pass in quick proto udp from any to any port = 53 keep state group 202 70 pass in quick proto tcp from any to any port = ftp keep state group 201 71 pass in quick proto tcp from any to any port = ftp-data keep state group 201 72 pass in quick proto tcp from any port = ftp-data to any port > 1023 keep state group 101 76 pass in quick proto udp from any to any port = ntp keep state group 202 80 pass in quick proto tcp from any to any port = 22 keep state group 201 81 pass in quick proto tcp from any to any port = telnet keep state group 201 82 pass in quick proto tcp from any to any port = www keep state group 201 [all …]
|
H A D | example.5 | 6 pass in from 10.1.1.2 to 10.2.1.1 11 pass in proto tcp from 10.2.2.2/24 to 10.1.1.2/32 port = 6667 16 pass in proto udp from 10.2.2.2 port != 53 to localhost 25 pass in from any to any with ipopts
|
H A D | example.11 | 5 pass in proto tcp from 10.2.2.2/24 to 10.1.1.2/32 port = 6667 10 pass in proto udp from 10.2.2.2 port != 53 to localhost 20 pass in proto tcp/udp from any to any port 512 <> 515 25 pass in proto tcp/udp all
|
H A D | BASIC_2.FW | 52 pass in quick on lo0 all 53 pass out quick on lo0 all 59 pass in log quick proto tcp all flags S/SA keep state group 200 65 pass in log quick proto icmp all keep state group 200
|
H A D | example.9 | 5 pass in all with opt sec 10 pass out on le1 all with opt sec-class topsecret 12 pass in on le1 all with opt sec-class topsecret
|
H A D | example.10 | 2 # pass ack packets (ie established connection) 4 pass in proto tcp from 10.1.0.0/16 port = 23 to 10.2.0.0/16 flags A/A 5 pass out proto tcp from 10.1.0.0/16 port = 23 to 10.2.0.0/16 flags A/A
|
/titanic_41/usr/src/lib/lvm/libmeta/common/ |
H A D | meta_mirror_resync.c | 45 mm_pass_num_t pass; /* pass number */ member 167 lp->pass = mirrorp->pass_num; in setup_units() 168 if ((lp->pass < 0) || (lp->pass > MD_PASS_MAX)) in setup_units() 169 lp->pass = MD_PASS_MAX; in setup_units() 172 lp->next = mirrors[lp->pass]; in setup_units() 173 mirrors[lp->pass] = lp; in setup_units() 192 mm_pass_num_t pass, max_pass; in meta_mirror_resync_all() local 241 for (pass = MD_PASS_MAX; pass > 1; --pass) { in meta_mirror_resync_all() 242 if (mirrors[pass] != NULL) { in meta_mirror_resync_all() 243 max_pass = pass; in meta_mirror_resync_all() [all …]
|
/titanic_41/usr/src/cmd/keyserv/ |
H A D | newkey.c | 91 char *pass, *target_host = NULL, in main() local 205 pass = get_password(uid, target_host, username); in main() 207 if (pass == NULL) in main() 210 (void) strlcpy(short_pass, pass, sizeof (short_pass)); in main() 337 *pass = NULL; local 374 pass = getpassphrase(prompt); 375 if (pass && strlen(pass) == 0) { 380 strcpy(password, pass); 388 pass = getpassphrase("Please retype password:"); 389 if (pass && strlen(pass) == 0) { [all …]
|
H A D | keylogin.c | 227 oldkeylogin(char *fullname, char *pass) in oldkeylogin() argument 232 if (getsecretkey(fullname, secret, pass) == 0) { in oldkeylogin() 329 char *pass; in main() local 351 if (!(pass = getpass("Password:"))) in main() 359 (void) oldkeylogin(fullname, pass); in main() 372 8) * 2) + 1, pass) == 0) { in main() 406 exit(oldkeylogin(fullname, pass)); in main()
|
/titanic_41/usr/src/lib/libc/port/locale/ |
H A D | collate.c | 188 substsearch(const struct lc_collate *lcc, const wchar_t key, int pass) in substsearch() argument 191 int n = lcc->lc_subst_count[pass]; in substsearch() 196 if (pass >= lcc->lc_directive_count) in substsearch() 202 p = lcc->lc_subst_table[pass] + (key & ~COLLATE_SUBST_PRIORITY); in substsearch() 383 int pass; in _collate_wxfrm() local 391 for (pass = 0; pass <= ndir; pass++) { in _collate_wxfrm() 395 if (pass != 0) { in _collate_wxfrm() 405 if (pass == ndir) { in _collate_wxfrm() 408 direc = lcc->lc_directive[pass]; in _collate_wxfrm() 433 _collate_lookup(lcc, t, &len, &pri, pass, in _collate_wxfrm() [all …]
|
H A D | wcscoll.c | 43 int direc, pass; in wcscoll_l() local 67 for (pass = 0; pass <= lcc->lc_directive_count; pass++) { in wcscoll_l() 75 if (pass == lcc->lc_directive_count) { in wcscoll_l() 78 direc = lcc->lc_directive[pass]; in wcscoll_l() 108 _collate_lookup(lcc, w1, &len1, &pri1, pass, in wcscoll_l() 117 _collate_lookup(lcc, w2, &len2, &pri2, pass, in wcscoll_l() 138 &pri1, pass, &st1); in wcscoll_l() 149 &pri2, pass, &st2); in wcscoll_l()
|
/titanic_41/usr/src/common/net/wanboot/ |
H A D | p12auxpars.c | 150 static int sunw_PKCS12_contents(PKCS12 *p12, const char *pass, 208 sunw_PKCS12_parse(PKCS12 *p12, const char *pass, int matchty, char *keyid, in sunw_PKCS12_parse() argument 249 if (pass == NULL || *pass == '\0') { in sunw_PKCS12_parse() 251 pass = NULL; in sunw_PKCS12_parse() 253 pass = ""; in sunw_PKCS12_parse() 259 } else if (PKCS12_verify_mac(p12, pass, -1) == 0) { in sunw_PKCS12_parse() 264 retval = parse_pkcs12(p12, pass, matchty, keyid, keyid_len, in sunw_PKCS12_parse() 319 parse_pkcs12(PKCS12 *p12, const char *pass, int matchty, char *keyid, in parse_pkcs12() argument 330 retval = sunw_PKCS12_contents(p12, pass, &work_kl, &work_ca); in parse_pkcs12() 498 sunw_PKCS12_contents(PKCS12 *p12, const char *pass, STACK_OF(EVP_PKEY) **pkey, in sunw_PKCS12_contents() argument [all …]
|
/titanic_41/usr/src/lib/libnsl/key/ |
H A D | gen_dhkeys.c | 65 getseed(seed, seedsize, pass) in getseed() argument 68 unsigned char *pass; 77 rseed ^= (rseed << 8) | pass[i]; 82 seed[i] = (random() & 0xff) ^ pass[i % 8]; 112 __gen_dhkeys(public, secret, pass) in __gen_dhkeys() argument 115 char *pass; 137 getseed((char *)seed, (int)sizeof (seed), (uchar_t *)pass); 172 char *pass) /* in */ in __gen_dhkeys_g() argument 176 if (! pkey || ! skey || ! pass) in __gen_dhkeys_g() 180 __gen_dhkeys(pkey, skey, pass); in __gen_dhkeys_g() [all …]
|
/titanic_41/usr/src/cmd/ssh/ssh-add/ |
H A D | ssh-add.c | 78 static char *pass = NULL; variable 82 if (pass) { in clear_pass() 83 memset(pass, 0, strlen(pass)); in clear_pass() 84 xfree(pass); in clear_pass() 85 pass = NULL; in clear_pass() 152 if (private == NULL && pass != NULL) in add_file() 153 private = key_load_private(filename, pass, NULL); in add_file() 160 pass = read_passphrase(msg, RP_ALLOW_STDIN); in add_file() 161 if (strcmp(pass, "") == 0) { in add_file() 166 private = key_load_private(filename, pass, &comment); in add_file()
|
/titanic_41/usr/src/lib/libpp/common/ |
H A D | pppragma.c | 31 pppragma(char* directive, char* pass, char* name, char* value, int newline) in pppragma() argument 41 if (pass) in pppragma() 48 ppprintf("%s:", pass); in pppragma() 60 if (sep || pass) in pppragma()
|
/titanic_41/usr/src/cmd/cmd-inet/lib/nwamd/ |
H A D | ipf6.conf.dfl | 31 pass in quick on lo0 32 pass out quick on lo0 35 pass in quick proto udp from any to any port = 546 36 pass out quick proto udp from any to any port = 547 39 pass in quick proto ipv6-icmp from any to any 40 pass out quick proto ipv6-icmp from any to any
|
/titanic_41/usr/src/lib/libsocket/inet/ |
H A D | rexec.c | 64 const char *pass, const char *cmd, int *fd2p) in rexec() argument 66 return (rexec_af(ahost, rport, name, pass, cmd, fd2p, AF_INET)); in rexec() 70 const char *pass, const char *cmd, int *fd2p, int af) in rexec_af() argument 103 _ruserpass(res->ai_canonname, (char **)&name, (char **)&pass); in rexec_af() 165 (void) write(s, pass, strlen(pass) + 1); in rexec_af()
|
/titanic_41/usr/src/cmd/ssh/sshd/ |
H A D | auth-sia.c | 51 auth_sia_password(Authctxt *authctxt, char *pass) in auth_sia_password() argument 60 if (!user || !pass || pass[0] == '\0') in auth_sia_password() 67 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) { in auth_sia_password()
|
/titanic_41/usr/src/cmd/avs/dsstat/ |
H A D | multi_stats.c | 50 int pass; in do_stats() local 53 for (pass = 0; ; pass++) { /* CSTYLED */ in do_stats() 54 if (iterations != -1 && pass >= iterations) in do_stats() 62 if (error == EAGAIN && pass == 0) in do_stats()
|
/titanic_41/usr/src/cmd/perl/contrib/Sun/Solaris/Project/t/ |
H A D | Project.t | 39 # pass() or fail() 41 # pass() or fail() 58 sub pass 61 fatal("pass() without start()"); 159 pass(); 180 pass(); 207 my ($ret, $file1, $file2, $file3, $file4, $file5, $pass); 332 pass(); 361 system("cmp -s $filename $filename.w") == 0 ? pass() : 718 pass(); [all …]
|
/titanic_41/usr/src/uts/common/io/comstar/port/iscsit/ |
H A D | iscsit_text.c | 165 int pass, i; in iscsit_add_default_portals() local 181 for (pass = 1; pass <= 2; pass++) { in iscsit_add_default_portals() 200 switch (pass) { in iscsit_add_default_portals() 236 int pass; in iscsit_add_portals() local 246 for (pass = 1; pass <= 2; pass++) { in iscsit_add_portals() 253 switch (pass) { in iscsit_add_portals()
|
/titanic_41/usr/src/lib/libbc/libc/net/ |
H A D | rexec.c | 48 char *pass, in rexec() argument 64 _ruserpass(hp->h_name, &name, &pass); in rexec() 121 (void) write(s, pass, strlen(pass) + 1); in rexec()
|
/titanic_41/usr/src/lib/gss_mechs/mech_dh/dh_common/ |
H A D | generic_key.c | 57 setseed(unsigned char *pass) in setseed() argument 67 rseed ^= (rseed << 8) | pass[i]; in setseed() 107 char *pass /* password to seed with for private key */) in __generic_gen_dhkeys() argument 121 setseed((u_char *)pass); in __generic_gen_dhkeys() 139 seed = random() ^ pass[i % 8]; in __generic_gen_dhkeys()
|
/titanic_41/usr/src/uts/common/inet/ipf/ |
H A D | fil.c | 1860 int fr_scanlist(fin, pass) in fr_scanlist() argument 1862 u_32_t pass; 1873 return pass; 1881 return pass; 1913 FR_VERBOSE(("%c", FR_ISSKIP(pass) ? 's' : 1914 FR_ISPASS(pass) ? 'p' : 1915 FR_ISACCOUNT(pass) ? 'A' : 1916 FR_ISAUTH(pass) ? 'a' : 1917 (pass & FR_NOMATCH) ? 'n' :'b')); 1950 f = (*fr->fr_func)(fin, &pass); [all …]
|