Searched refs:ip (Results 376 - 400 of 1110) sorted by relevance

<<11121314151617181920>>

/freebsd-12-stable/contrib/mandoc/
H A Ddba.c368 const int32_t *ip; local
372 for (ip = pp; *ip; ip++)
376 for (ip = pp; *ip; ip++)
378 be32toh(*ip) / 5 / sizeof(*ip) - 1));
/freebsd-12-stable/sys/netinet/libalias/
H A Dalias_ftp.c89 #include <netinet/ip.h>
104 AliasHandleFtpOut(struct libalias *, struct ip *, struct alias_link *,
107 AliasHandleFtpIn(struct libalias *, struct ip *, struct alias_link *);
133 protohandler_out(struct libalias *la, struct ip *pip, struct alias_data *ah)
140 protohandler_in(struct libalias *la, struct ip *pip, struct alias_data *ah)
215 static void NewFtpMessage(struct libalias *la, struct ip *, struct alias_link *, int, int);
220 struct ip *pip, /* IP packet to examine/patch */
282 struct ip *pip, /* IP packet to examine/patch */
636 NewFtpMessage(struct libalias *la, struct ip *pip,
H A Dalias_local.h217 int SctpAlias(struct libalias *la, struct ip *ip, int direction);
228 u_short IpChecksum(struct ip *_pip);
229 u_short TcpChecksum(struct ip *_pip);
341 ProxyModify(struct libalias *la, struct alias_link *_lnk, struct ip *_pip,
355 ip_next(struct ip *iphdr)
/freebsd-12-stable/sys/netipsec/
H A Dsubr_ipsec.c49 #include <netinet/ip.h>
79 if (m->m_len < sizeof (struct ip)) {
80 m_copydata(m, offsetof(struct ip, ip_src),
83 m_copydata(m, offsetof(struct ip, ip_dst),
87 const struct ip *ip = mtod(m, const struct ip *); local
88 src->sin.sin_addr = ip->ip_src;
89 dst->sin.sin_addr = ip->ip_dst;
/freebsd-12-stable/contrib/gcc/config/arm/
H A Dlib1funcs.asm333 ip .req r12 label
591 mov ip, curbit
595 mov curbit, ip
601 mov ip, curbit
605 mov curbit, ip
611 mov ip, curbit
615 mov curbit, ip
617 mov ip, curbit
660 @ are governed by the position of the bit, stored in ip.
667 @ bit in ip wil
[all...]
/freebsd-12-stable/sys/powerpc/powerpc/
H A Din_cksum.c50 #include <netinet/ip.h>
245 u_int in_cksum_hdr(const struct ip *ip) argument
247 u_int64_t sum = in_cksumdata(ip, sizeof(struct ip));
/freebsd-12-stable/sys/riscv/riscv/
H A Din_cksum.c50 #include <netinet/ip.h>
236 u_int in_cksum_hdr(const struct ip *ip) argument
238 u_int64_t sum = in_cksumdata(ip, sizeof(struct ip));
/freebsd-12-stable/sys/mips/mips/
H A Din_cksum.c48 #include <netinet/ip.h>
243 u_int in_cksum_hdr(const struct ip *ip) argument
245 u_int64_t sum = in_cksumdata(ip, sizeof(struct ip));
/freebsd-12-stable/sys/arm/arm/
H A Dfusu.S168 ldrbt ip, [r0]
170 orr r0, ip, r3, asl #8
172 orr r0, r3, ip, asl #8
288 mov ip, r1, lsr #8
289 strbt ip, [r0], #1
/freebsd-12-stable/sys/arm64/arm64/
H A Din_cksum.c48 #include <netinet/ip.h>
234 u_int in_cksum_hdr(const struct ip *ip) argument
236 u_int64_t sum = in_cksumdata(ip, sizeof(struct ip));
/freebsd-12-stable/sys/amd64/amd64/
H A Din_cksum.c50 #include <netinet/ip.h>
236 u_int in_cksum_hdr(const struct ip *ip) argument
238 u_int64_t sum = in_cksumdata(ip, sizeof(struct ip));
/freebsd-12-stable/sys/ufs/ffs/
H A Dffs_vfsops.c88 static void ffs_ifree(struct ufsmount *ump, struct inode *ip);
625 struct inode *ip; local
756 ip = VTOI(vp);
758 bread(devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
766 ffs_load_inode(bp, ip, fs, ip->i_number);
767 ip->i_effnlink = ip->i_nlink;
1427 sync_doupdate(struct inode *ip) argument
1430 return ((ip
1445 struct inode *ip; local
1509 struct inode *ip; local
1656 struct inode *ip; local
2008 ffs_ifree(struct ufsmount *ump, struct inode *ip) argument
[all...]
/freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c1507 struct comvars *ip, *op; local
1514 ip = &tmpstruct;
1520 ip = &proxstruct;
1524 ip->connect = connected;
1527 strlcpy (ip->name, hostname, sizeof (ip->name));
1529 ip->name[0] = 0;
1531 ip->hctl = hisctladdr_ss;
1533 ip->mctl = myctladdr_ss;
1535 ip
[all...]
/freebsd-12-stable/contrib/tcpdump/
H A Dprint-nfs.c40 #include "ip.h"
205 const struct ip *ip; local
210 switch (IP_V((const struct ip *)bp)) {
212 ip = (const struct ip *)bp;
213 strlcpy(srcaddr, ipaddr_string(ndo, &ip->ip_src), sizeof(srcaddr));
214 strlcpy(dstaddr, ipaddr_string(ndo, &ip->ip_dst), sizeof(dstaddr));
869 const struct ip *ip local
918 const struct ip *ip = (const struct ip *)bp; local
[all...]
H A Dprint-icmp.c37 #include "ip.h"
75 struct ip idi_ip;
95 * packet is large enought to contain the returned ip header.
98 * ip header length.
101 #define ICMP_EXTD_MINLEN (156 - sizeof (struct ip)) /* draft-bonica-internet-icmp-08 */
104 #define ICMP_ADVLENMIN (8 + sizeof (struct ip) + 8) /* min */
138 #define ICMP_PARAMPROB 12 /* ip header bad */
336 const struct ip *ip; local
338 const struct ip *oi
[all...]
/freebsd-12-stable/sys/netinet/
H A Dtcp_debug.c61 #include <netinet/ip.h>
115 isipv6 = (ipgen != NULL && ((struct ip *)ipgen)->ip_v == 6) ? 1 : 0;
180 ntohs(((struct ip *)ipgen)->ip_len);
H A Dtcp_timewait.c70 #include <netinet/ip.h>
555 struct ip *ip = NULL; local
591 ip = mtod(m, struct ip *);
592 th = (struct tcphdr *)(ip + 1);
593 tcpip_fillheaders(inp, ip, th);
638 th->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
640 ip
[all...]
/freebsd-12-stable/tests/sys/netinet/libalias/
H A Dutil.h37 #include <netinet/ip.h>
43 /* common ip ranges */
48 struct ip * ip_packet(u_char protocol, size_t len);
49 struct udphdr * set_udp(struct ip *p, u_short sport, u_short dport);
/freebsd-12-stable/tools/regression/netinet/msocket_ifnet_remove/
H A Dmsocket_ifnet_remove.c131 ifconfig_inet(char *ifname, int ifunit, char *ip, char *netmask) argument
150 sinp->sin_addr.s_addr = inet_addr(ip);
159 ifunit, ip);
/freebsd-12-stable/sbin/iscontrol/
H A Dauth_subr.c184 char *p, *ap, *ip, *cp, *chapSecret, *digest; local
194 ip = "238";
198 if((digest = chapDigest(ap, ip, cp, chapSecret)) != NULL) {
/freebsd-12-stable/usr.sbin/ppp/
H A Dvjcomp.c36 #include <netinet/ip.h>
79 struct ip *pip;
83 pip = (struct ip *)MBUF_CTOP(bp);
/freebsd-12-stable/contrib/unbound/ipset/
H A Dipset.c121 char ip[128]; local
122 if(inet_ntop(af, rr_data+2, ip, (socklen_t)sizeof(ip)) == 0)
123 snprintf(ip, sizeof(ip), "(inet_ntop_error)");
124 verbose(VERB_QUERY, "ipset: add %s to %s for %s", ip, setname, dname);
/freebsd-12-stable/contrib/bearssl/src/x509/
H A Dx509_decoder.c9 const unsigned char *ip; member in struct:__anon358
354 #define T0_ENTER(ip, rp, slot) do { \
360 *((rp) ++) = (uint32_t)((ip) - &t0_codeblock[0]) + (t0_lnum << 16); \
361 (ip) = t0_newip; \
369 t0ctx->ip = &t0_codeblock[0]; \
370 T0_ENTER(t0ctx->ip, t0ctx->rp, slot); \
381 const unsigned char *ip; local
428 ip = ((t0_context *)t0ctx)->ip;
434 t0x = T0_NEXT(&ip);
[all...]
/freebsd-12-stable/sys/contrib/ipfilter/netinet/
H A Dip_rcmd_pxy.c163 ip_t *ip; local
169 ip = fin->fin_ip;
176 off = (char *)tcp - (char *)ip + tcpsz + fin->fin_ipoff;
267 slen = ip->ip_len;
268 ip->ip_len = htons(fin->fin_hlen + sizeof(*tcp));
321 ip->ip_len = slen;
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4remoteudp.ksh28 # Test {udp,ip}:::{send,receive} of IPv4 UDP to a remote host.
32 # 1. A change to the ip stack breaking expected probe behavior,
42 # 1 x ip:::send (UDP sent to ping's base UDP port)
86 ip:::send
102 printf("ip:::send - %s\n", ipsend >= 1 ? "yes" : "no");

Completed in 304 milliseconds

<<11121314151617181920>>