| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/SDBM_File/sdbm/ |
| pair.h | 12 extern int fitpair proto((char *, int)); 13 extern void putpair proto((char *, datum, datum)); 14 extern datum getpair proto((char *, datum)); 15 extern int exipair proto((char *, datum)); 16 extern int delpair proto((char *, datum)); 17 extern int chkpage proto((char *)); 18 extern datum getnkey proto((char *, int)); 19 extern void splpage proto((char *, char *, long)); 21 extern int duppair proto((char *, datum));
|
| /onnv/onnv-gate/usr/src/cmd/ipf/examples/ |
| 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 14 block in proto tcp from any to any port 5999 >< 6010 19 block in proto tcp/udp all 20 pass in proto tcp/udp from any to any port 512 <> 515 25 pass in proto tcp/udp all 26 block in proto tcp/udp from any to any port 511 >< 516
|
| example.1 | 4 block in on le0 proto tcp from 10.1.1.1/32 to any
|
| example.2 | 5 block out on le0 proto tcp from any to 10.1.1.3/32 port = 23
|
| example.4 | 4 block in proto icmp from any to any
|
| tcpstate | 5 pass out quick on le0 proto tcp from any to any flags S/SAFR keep state 6 block out on le0 proto tcp all 7 block in on le0 proto tcp all 11 pass out quick on le0 proto udp from any to any port = 53 keep state 12 block out on le0 proto udp all 13 block in on le0 proto udp all
|
| example.5 | 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 20 block in proto icmp from any to any icmp-type unreach
|
| example.8 | 5 block in proto tcp from any to any flags S/SA 6 block return-rst in quick proto tcp from any to any port = 113 flags S/SA 10 block return-icmp in proto udp from any to any
|
| example.10 | 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 10 block in on le0 proto tcp from any to 10.1.0.0/16 flags S/SA 12 block out on le0 proto tcp from 10.1.0.0 to any flags SA/SA
|
| example.13 | 5 block in on qe0 to qe3:10.3.3.3 proto tcp all with short 9 pass in on le0 dup-to le1:10.3.3.3 proto tcp all flags S/SA 13 pass in on ppp0 fastroute proto udp all 17 pass in on le0 to le1:10.3.3.1 proto icmp all
|
| example.6 | 5 block in proto tcp from any to any flags S/SA
|
| example.sr | 18 log in on le0 proto tcp from any to any flags S/SA 22 block in log on le0 proto icmp from any to any icmp-type unreach 27 block in log on le0 proto udp from any to any port = 2049 46 block in on le0 proto udp from any to 10.1.3.0/24 47 block in on le0 proto udp from any to 10.1.1.0/24 48 block in on le0 proto udp from any to 10.1.2.0/24 53 block in on le0 proto tcp from any to 10.1.3.0/24 flags S/SA 54 block in on le0 proto tcp from any to 10.1.2.0/24 flags S/SA 55 block in on le0 proto tcp from any to 10.1.1.0/24 flags S/SA 59 block in on le0 proto icmp from any to 10.1.3.0/2 [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
| cproto.t | 14 my ($keyword, $proto) = split; 15 if ($proto eq 'undef') { 18 elsif ($proto eq 'unknown') { 23 is( "(".prototype("CORE::".$keyword).")", $proto, $keyword );
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/routeadm/ |
| svc-forwarding | 34 proto="$1" 40 if [ "$proto" = "ipv4" ]; then 55 proto="$2" 57 if [ -z "$proto" ]; then 68 if [ -z "$proto" ]; then 72 if [ "$proto" = "ipv6" -a "$numv6ifs" = 0 ]; then 76 set_forwarding_flag $proto enabled 79 set_forwarding_flag $proto disabled
|
| /onnv/onnv-gate/usr/src/lib/libpp/common/ |
| ppproto.c | 28 * define PROTOMAIN for standalone proto 32 static const char id[] = "\n@(#)$Id: proto (AT&T Research) 2008-05-11 $\0\n"; 51 #define MAGICGEN "/* : : generated by proto : : */\n" 53 #define MAGICDIR "pragma" /* proto magic directive */ 54 #define MAGICARG "prototyped" /* proto magic directive arg */ 60 struct proto /* proto buffer state */ struct 94 * proto is separate from pp so these undef's are ok 263 p = strcopy(buf, "proto: "); 266 register struct proto* proto = (struct proto*)(iob - sizeof(struct proto)) local 2106 register struct proto* proto = (struct proto*)(iob - sizeof(struct proto)); local 2127 register struct proto* proto; local 2450 register struct proto* proto = (struct proto*)(iob - sizeof(struct proto)); local 2549 register struct proto* proto = (struct proto*)(iob - sizeof(struct proto)); local [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| Fatal.pm | 35 my $proto = shift; 37 while ($proto =~ /\S/) { 40 push(@out, $1 . "{\$_[$n]}"), next if $proto =~ s/^\s*\\([\@%\$\&])//; 41 push(@out, "\$_[$n]"), next if $proto =~ s/^\s*([*\$&])//; 42 push(@out, "\@_[$n..\$#_]"), last if $proto =~ s/^\s*(;\s*)?\@//; 43 $seen_semi = 1, $n--, next if $proto =~ s/^\s*;//; # XXXX ???? 44 die "Unknown prototype letters: \"$proto\""; 90 my($name, $code, $sref, $real_proto, $proto, $core, $call); 100 $proto = prototype $sref; 105 $proto = eval { prototype "CORE::$name" } [all...] |
| /onnv/onnv-gate/usr/src/lib/libshare/common/ |
| plugin.c | 80 * would have modules with names of the form libshare_<proto>.so. 88 struct sa_proto_plugin *proto; local 141 proto = (struct sa_proto_plugin *) 143 if (proto == NULL) { 149 proto->plugin_ops = plugin_ops; 150 proto->plugin_handle = dlhandle; 152 proto->plugin_next = sap_proto_list; 153 sap_proto_list = proto; 241 * find_protocol(proto) 248 find_protocol(char *proto) [all...] |
| /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/ |
| portnum.c | 19 int portnum(name, proto, port, linenum) 20 char *name, *proto; 36 if (proto != NULL && strcasecmp(proto, "tcp/udp") != 0) { 37 sp = getservbyname(name, proto);
|
| getportproto.c | 9 int getportproto(name, proto) 11 int proto; 30 p = getprotobynumber(proto);
|
| /onnv/onnv-gate/usr/src/cmd/nscd/ |
| getserv.c | 79 if (e1->key.serv.proto == NULL && e2->key.serv.proto) 81 if (e1->key.serv.proto && e2->key.serv.proto == NULL) 83 if (e1->key.serv.proto) { 84 l1 = strlen(e1->key.serv.proto); 85 l2 = strlen(e2->key.serv.proto); 86 res = strncmp(e1->key.serv.proto, e2->key.serv.proto, 113 check_null(argp->key.serv.proto)); [all...] |
| /onnv/onnv-gate/usr/src/lib/libsocket/inet/ |
| getservent.c | 49 getservbyname(const char *nam, const char *proto) 55 res = getservbyname_r(nam, proto, 62 getservbyport(int port, const char *proto) 68 res = getservbyport_r(port, proto,
|
| /onnv/onnv-gate/usr/src/lib/libbc/libc/net/ |
| getrpcport.c | 35 getrpcport(char *host, int prognum, int versnum, int proto) 45 return (pmap_getport(&addr, prognum, versnum, proto));
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWfsu/ |
| Makefile | 48 proto:sh = \ 58 @$(CP) $(proto) prototype_sparc
|
| /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpsched/ |
| lpfsck.c | 50 static void proto (int, int, ...); 76 proto (D, 0, Lp_A, NULL, 0775, Lp_Uid, Lp_Gid); 77 proto (D, 1, Lp_A_Classes, NULL, 0775, Lp_Uid, Lp_Gid); 78 proto (D, 1, Lp_A_Forms, NULL, 0775, Lp_Uid, Lp_Gid); 79 proto (D, 1, Lp_A_Interfaces, NULL, 0775, Lp_Uid, Lp_Gid); 80 proto (D, 1, Lp_A_Printers, NULL, 0775, Lp_Uid, Lp_Gid); 81 proto (D, 1, Lp_A_PrintWheels, NULL, 0775, Lp_Uid, Lp_Gid); 82 proto (D, 0, "/var/lp", NULL, 0775, Lp_Uid, Lp_Gid); 83 proto (D, 1, Lp_Logs, NULL, 0775, Lp_Uid, Lp_Gid); 84 proto (D, 1, Lp_Spooldir, NULL, 0775, Lp_Uid, Lp_Gid) 217 proto(int type, int rm_ok, ...) function [all...] |
| /onnv/onnv-gate/usr/src/cmd/sendmail/include/sm/ |
| cdefs.h | 71 # define SM_DEAD(proto) volatile proto 74 # define SM_DEAD(proto) proto __attribute__((__noreturn__)) 78 # define SM_DEAD(proto) proto
|