Searched refs:ip (Results 276 - 300 of 1028) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/netipsec/
H A Dsubr_ipsec.c49 #include <netinet/ip.h>
78 if (m->m_len < sizeof (struct ip)) {
79 m_copydata(m, offsetof(struct ip, ip_src),
82 m_copydata(m, offsetof(struct ip, ip_dst),
86 const struct ip *ip = mtod(m, const struct ip *); local
87 src->sin.sin_addr = ip->ip_src;
88 dst->sin.sin_addr = ip->ip_dst;
/freebsd-11-stable/sys/arm/arm/
H A Dcpufunc_asm.S148 mov ip, sp
149 stmfd sp!, {fp, ip, lr, pc}
150 sub fp, ip, #4
/freebsd-11-stable/sys/netinet/libalias/
H A Dalias_util.c56 #include <netinet/ip.h>
99 IpChecksum(struct ip *pip)
107 TcpChecksum(struct ip *pip)
H A Dalias_sctp.h71 #include <netinet/ip.h>
133 struct in_addr l_addr; /**< local ip address */
134 struct in_addr a_addr; /**< alias ip address */
172 // struct ip6_hdr *ip_hdr; /**< pointer to ip packet header */ /*no inet6 support yet*/
174 struct ip *ip_hdr; /**< pointer to ip packet header */
H A Dalias_skinny.c45 #include <netinet/ip.h>
57 AliasHandleSkinny(struct libalias *, struct ip *, struct alias_link *);
72 protohandler(struct libalias *la, struct ip *pip, struct alias_data *ah)
210 alias_skinny_reg_msg(struct RegisterMessage *reg_msg, struct ip *pip,
230 struct ip *pip, struct tcphdr *tc,
253 alias_skinny_port_msg(struct IpPortMessage *port_msg, struct ip *pip,
272 struct ip *pip, struct tcphdr *tc,
303 AliasHandleSkinny(struct libalias *la, struct ip *pip, struct alias_link *lnk)
/freebsd-11-stable/tools/tools/net80211/w00t/redir/
H A Dbuddy.c34 #include <netinet/ip.h>
55 struct ip *ih;
61 ih = (struct ip*) buf;
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_ntoskrnl.c880 irp *ip; local
882 ip = IoBuildAsynchronousFsdRequest(func, dobj, buf, len, off, status);
883 if (ip == NULL)
885 ip->irp_usrevent = event;
887 return (ip);
899 irp *ip; local
902 ip = IoAllocateIrp(dobj->do_stacksize, TRUE);
903 if (ip == NULL)
906 ip->irp_usriostat = status;
907 ip
966 irp *ip; local
1064 IoMakeAssociatedIrp(irp *ip, uint8_t stsize) argument
1127 IoCancelIrp(irp *ip) argument
1171 IofCompleteRequest(irp *ip, uint8_t prioboost) argument
[all...]
/freebsd-11-stable/sys/net/
H A Dif_gif.c71 #include <netinet/ip.h>
277 const struct ip *ip; local
307 if (m->m_pkthdr.len < sizeof(struct ip))
310 ip = mtod(m, const struct ip *);
311 switch (ip->ip_v) {
340 struct ip *ip; local
382 if (m->m_len < sizeof(struct ip))
515 struct ip *ip; local
959 struct ip *ip; local
[all...]
H A Dif_spppfr.c66 #include <netinet/ip.h>
77 #include <netinet/ip.h>
320 struct ip *ip = (struct ip*) (h + hlen);
321 struct tcphdr *tcp = (struct tcphdr*) ((long*)ip + ip->ip_hl);
323 if (! (ip->ip_off & ~IP_DF) && ip->ip_len > 400 &&
324 (ip
[all...]
/freebsd-11-stable/sys/amd64/amd64/
H A Ddb_disasm.c1232 const struct inst * ip; local
1312 ip = &db_inst_table[inst];
1313 while (ip->i_size == ESC) {
1315 ip = ((const struct inst * const *)ip->i_extra)[inst>>4];
1316 if (ip == NULL) {
1317 ip = &db_bad_inst;
1320 ip = &ip[inst&0xf];
1324 if (ip
[all...]
/freebsd-11-stable/sys/ufs/ffs/
H A Dffs_softdep.c156 softdep_setup_inomapdep(bp, ip, newinum, mode)
158 struct inode *ip;
179 softdep_setup_allocdirect(ip, lbn, newblkno, oldblkno, newsize, oldsize, bp)
180 struct inode *ip;
193 softdep_setup_allocext(ip, lbn, newblkno, oldblkno, newsize, oldsize, bp)
194 struct inode *ip;
207 softdep_setup_allocindir_page(ip, lbn, bp, ptrno, newblkno, oldblkno, nbp)
208 struct inode *ip;
221 softdep_setup_allocindir_meta(nbp, ip, bp, ptrno, newblkno)
223 struct inode *ip;
2768 struct inode *ip; local
4019 newjremref(struct dirrem *dirrem, struct inode *dp, struct inode *ip, off_t diroff, nlink_t nlink) argument
7533 struct inode *ip = VTOI(pvp); local
7989 struct inode *ip; local
9759 struct inode *ip; local
12364 struct inode *ip; local
12633 struct inode *ip; local
12931 struct inode *ip; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4localtcp.ksh28 # Test {ip,tcp}:::{send,receive} of IPv4 TCP to local host.
32 # 1. A change to the ip stack breaking expected probe behavior,
42 # 3 x ip:::send (2 during the TCP handshake, then a FIN)
44 # 2 x ip:::receive (1 during the TCP handshake, then the FIN ACK)
98 ip:::send
111 ip:::receive
127 printf("ip:::send - %s\n", ipsend >= 5 ? "yes" : "no");
128 printf("ip:::receive - %s\n", ipreceive >= 5 ? "yes" : "no");
H A Dtst.ipv4remotetcp.ksh28 # Test {tcp,ip}:::{send,receive} of IPv4 TCP to a remote host.
32 # 1. A change to the ip stack breaking expected probe behavior,
42 # 3 x ip:::send (2 during the TCP handshake, then a FIN)
44 # 2 x ip:::receive (1 during the TCP handshake, then the FIN ACK)
88 ip:::send
101 ip:::receive
117 printf("ip:::send - %s\n", ipsend >= 3 ? "yes" : "no");
118 printf("ip:::receive - %s\n", ipreceive >= 2 ? "yes" : "no");
/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Dbss_fd.c193 int *ip; local
213 ip = (int *)ptr;
214 if (ip != NULL)
215 *ip = b->num;
H A Dbss_sock.c167 int *ip; local
178 ip = (int *)ptr;
179 if (ip != NULL)
180 *ip = b->num;
/freebsd-11-stable/tools/tools/tinybsd/conf/firewall/etc/
H A Drc.firewall86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
153 # set these to your network and netmask and ip
156 ip="192.0.2.1"
161 ${fwcmd} add pass all from ${ip} to ${net}:${mask}
162 ${fwcmd} add pass all from ${net}:${mask} to ${ip}
171 ${fwcmd} add pass tcp from any to ${ip} 25 setup
174 ${fwcmd} add pass tcp from ${ip} to any setup
180 ${fwcmd} add pass udp from ${ip} to any 53 keep-state
183 ${fwcmd} add pass udp from ${ip} to any 123 keep-state
197 # set these to your outside interface network and netmask and ip
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/wireless/etc/
H A Drc.firewall86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
153 # set these to your network and netmask and ip
156 ip="192.0.2.1"
161 ${fwcmd} add pass all from ${ip} to ${net}:${mask}
162 ${fwcmd} add pass all from ${net}:${mask} to ${ip}
171 ${fwcmd} add pass tcp from any to ${ip} 25 setup
174 ${fwcmd} add pass tcp from ${ip} to any setup
180 ${fwcmd} add pass udp from ${ip} to any 53 keep-state
183 ${fwcmd} add pass udp from ${ip} to any 123 keep-state
197 # set these to your outside interface network and netmask and ip
[all...]
/freebsd-11-stable/contrib/netbsd-tests/net/carp/
H A Dt_basic.sh51 local carpif= ip= advskew=
55 ip=$IP_MASTER
59 ip=$IP_BACKUP
65 atf_check -s exit:0 rump.ifconfig shmif0 $ip/24 up
/freebsd-11-stable/contrib/netbsd-tests/net/if_tun/
H A Dt_tun.sh76 local ip=$(echo $1 |sed 's/\./\\./g')
82 "rump.netstat -rn -f inet | grep ^'$ip'"
84 "rump.netstat -rn -f inet | grep ^'$ip'"
86 "rump.netstat -rn -f inet | grep ^'$ip'"
/freebsd-11-stable/contrib/netbsd-tests/net/net/
H A Dt_mtudisc6.sh49 local ip=$4
54 atf_check -s exit:0 rump.ifconfig $if inet6 $ip
75 local ip=$1
81 ftp -q $timeout -o ./out "http://[$ip]/$HTML_FILE"
/freebsd-11-stable/usr.bin/systat/
H A DMakefile9 mode.c ip.c sctp.c tcp.c zarc.c \
/freebsd-11-stable/contrib/libstdc++/libsupc++/
H A Deh_personality.cc367 _Unwind_Ptr landing_pad, ip;
407 ip = (_Unwind_Ptr) ue_header;
408 _Unwind_SetGR(context, 12, ip);
439 ip = _Unwind_GetIPInfo (context, &ip_before_insn);
441 ip = _Unwind_GetIP (context);
444 --ip;
454 if ((int) ip < 0)
456 else if (ip == 0)
468 while (--ip);
490 // The table is sorted, so if we've passed the ip, sto
366 _Unwind_Ptr landing_pad, ip; local
[all...]
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_ipsec_pxy.c150 ip_t *ip; local
158 ip = fin->fin_ip;
168 ip->ip_dst) != NULL)
228 p = ip->ip_p;
229 ip->ip_p = IPPROTO_ESP;
259 ip->ip_p = p & 0xff;
279 ip_t *ip; local
291 ip = fin->fin_ip;
292 p = ip->ip_p;
300 ip
[all...]
/freebsd-11-stable/sys/fs/ext2fs/
H A Dinode.h178 #define ITOV(ip) ((ip)->i_vnode)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Ddivmodsi4.S52 eor ip, r0, r0, asr #31
54 sub r0, ip, r0, asr #31

Completed in 214 milliseconds

<<11121314151617181920>>