Searched refs:any (Results 1 - 25 of 389) sorted by relevance

1234567891011>>

/freebsd-11-stable/sbin/natd/samples/
H A Dnatd.test10 ipfw add divert 32000 ip from any to any via $1
11 ipfw add pass ip from any to any
/freebsd-11-stable/etc/
H A Drc.firewall85 ${fwcmd} add 100 pass all from any to any via lo0
86 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
87 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
89 ${fwcmd} add 400 deny all from any to ::1
90 ${fwcmd} add 500 deny all from ::1 to any
109 ${fwcmd} add pass ipv6-icmp from any to any icmp6types 1
112 ${fwcmd} add pass ipv6-icmp from any to any icmp6type
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/firewall/etc/
H A Drc.firewall84 ${fwcmd} add 100 pass all from any to any via lo0
85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
124 ${fwcmd} add 50 divert natd all from any to any via ${natd_interface}
136 # ${fwcmd} add 65000 pass all from any to any
144 ${fwcmd} add 65000 pass all from any to any
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/wireless/etc/
H A Drc.firewall84 ${fwcmd} add 100 pass all from any to any via lo0
85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
124 ${fwcmd} add 50 divert natd all from any to any via ${natd_interface}
136 # ${fwcmd} add 65000 pass all from any to any
144 ${fwcmd} add 65000 pass all from any to any
[all...]
/freebsd-11-stable/contrib/ipfilter/rules/
H A DBASIC_1.FW27 block in log on ed0 from w.x.y.z/24 to any head 200
36 block in log quick from 127.0.0.0/8 to any group 100
37 block in log quick from any to 127.0.0.0/8 group 100
38 block in log quick from 127.0.0.0/8 to any group 200
39 block in log quick from any to 127.0.0.0/8 group 200
49 block in log quick from 10.0.0.0/8 to any group 100
50 block in log quick from 192.168.0.0/16 to any group 100
51 block in log quick from 172.16.0.0/12 to any group 100
55 block in log quick from a.b.c.d/24 to any group 100
60 pass in quick proto udp from any t
[all...]
/freebsd-11-stable/release/picobsd/floppy.tree/etc/
H A Dsnmpd.conf35 group local any local
36 group public any public
44 access public "" any noauth 0 system none none
45 access local "" any noauth 0 all all all
54 # group public any public
55 # group private any private
57 # access public "" any noauth 0 all none none
58 # access private "" any noauth 0 all all none
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrtoll.c55 int neg, any, cutlim; local
58 * Skip white space and pick up leading +/- sign if any.
98 * Set any if any `digits' consumed; make it negative to indicate
111 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
120 if (any < 0)
124 any = -1;
128 any = 1;
134 any = -1;
138 any
[all...]
H A Dstrtoul.c53 int neg, any, cutlim; local
81 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
90 if (any < 0)
93 any = -1;
97 any = 1;
102 if (neg && any > 0)
105 *endptr = (char *) (any ? s - 1 : nptr);
H A Dstrtoull.c55 int neg, any, cutlim; local
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
92 if (any < 0)
95 any = -1;
99 any = 1;
104 if (neg && any > 0)
107 *endptr = (char *) (any ? s - 1 : nptr);
/freebsd-11-stable/lib/libc/iconv/
H A D_strtoul.h51 int any, cutlim, i, neg; local
64 * Skip white space and pick up leading +/- sign if any.
94 for (acc = 0, any = 0;; c = *s++) {
103 if (any < 0)
108 any = -1;
111 any = 0;
115 any = 1;
120 if (neg && any > 0)
124 *endptr = __DECONST(void *, any ? s - 1 : nptr);
H A D_strtol.h52 int any, cutlim, i, neg; local
68 * Skip white space and pick up leading +/- sign if any.
107 * Set any if any `digits' consumed; make it negative to indicate
120 for (acc = 0, any = 0;; c = *s++) {
129 if (any < 0)
135 any = -1;
138 any = 0;
142 any = 1;
150 any
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dstrtoul.c5 * Permission to use, copy, modify, and/or distribute this software for any
79 int neg = 0, any, cutlim; local
102 for (acc = 0, any = 0;; c = *s++) {
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
114 any = -1;
116 any = 1;
121 if (any < 0) {
127 DE_CONST(any ? s - 1 : nptr, *endptr);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
97 * Skip white space and pick up leading +/- sign if any.
132 * Set any if any `digits' consumed; make it negative to indicate
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
148 any = -1;
150 any = 1;
155 if (any < 0) {
161 *endptr = (char *) (any
[all...]
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 *endptr = (char *) (any ? s - 1 : nptr);
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
97 * Skip white space and pick up leading +/- sign if any.
132 * Set any if any `digits' consumed; make it negative to indicate
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
148 any = -1;
150 any = 1;
155 if (any < 0) {
161 *endptr = (char *) (any
[all...]
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 *endptr = (char *) (any ? s - 1 : nptr);
/freebsd-11-stable/sys/libkern/
H A Dstrtol.c59 int neg = 0, any, cutlim; local
62 * Skip white space and pick up leading +/- sign if any.
97 * Set any if any `digits' consumed; make it negative to indicate
103 for (acc = 0, any = 0;; c = *s++) {
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
115 any = -1;
117 any = 1;
122 if (any < 0) {
127 *endptr = __DECONST(char *, any
[all...]
H A Dstrtoq.c54 int neg, any, cutlim; local
57 * Skip white space and pick up leading +/- sign if any.
97 * Set any if any `digits' consumed; make it negative to indicate
104 for (acc = 0, any = 0;; c = *s++) {
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
116 any = -1;
118 any = 1;
123 if (any < 0) {
128 *endptr = __DECONST(char *, any
[all...]
H A Dstrtoul.c59 int neg = 0, any, cutlim; local
82 for (acc = 0, any = 0;; c = *s++) {
93 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
94 any = -1;
96 any = 1;
101 if (any < 0) {
106 *endptr = __DECONST(char *, any ? s - 1 : nptr);
H A Dstrtouq.c54 int neg, any, cutlim; local
81 for (acc = 0, any = 0;; c = *s++) {
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
93 any = -1;
95 any = 1;
100 if (any < 0) {
105 *endptr = __DECONST(char *, any ? s - 1 : nptr);
/freebsd-11-stable/usr.sbin/ifmcstat/
H A Dprintb.c42 int i, any = 0; local
55 if (any)
57 any = 1;
/freebsd-11-stable/lib/libc/stdlib/
H A Dstrtoimax.c61 int neg, any, cutlim; local
65 * Skip white space and pick up leading +/- sign if any.
92 acc = any = 0;
111 * Set 'any' if any `digits' consumed; make it negative to indicate
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
130 any = -1;
132 any = 1;
137 if (any < 0) {
140 } else if (!any) {
[all...]
H A Dstrtoll.c61 int neg, any, cutlim; local
65 * Skip white space and pick up leading +/- sign if any.
92 acc = any = 0;
111 * Set 'any' if any `digits' consumed; make it negative to indicate
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
130 any = -1;
132 any = 1;
137 if (any < 0) {
140 } else if (!any) {
[all...]
H A Dstrtoul.c60 int neg, any, cutlim; local
89 acc = any = 0;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
107 any = -1;
109 any = 1;
114 if (any < 0) {
117 } else if (!any) {
123 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoull.c61 int neg, any, cutlim; local
90 acc = any = 0;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
108 any = -1;
110 any = 1;
115 if (any < 0) {
118 } else if (!any) {
124 *endptr = (char *)(any ? s - 1 : nptr);

Completed in 100 milliseconds

1234567891011>>