Searched refs:ip (Results 476 - 500 of 1110) sorted by relevance

<<11121314151617181920>>

/freebsd-12-stable/lib/libfetch/
H A Dcommon.c596 * Compare ip address in addrinfo with address passes.
618 * Compare ip address in addrinfo with host passed. If host is not an IP
656 const char *host, struct addrinfo *ip)
684 if (name->type == GEN_DNS && ip == NULL &&
687 else if (name->type == GEN_IPADD && ip != NULL &&
688 fetch_ssl_ipaddr_match_bin(ip, ns, nslen))
699 struct addrinfo *ip)
719 if (ip == NULL &&
722 else if (ip != NULL && fetch_ssl_ipaddr_match(ip, c
698 fetch_ssl_verify_cn(X509_NAME *subject, const char *host, struct addrinfo *ip) argument
738 struct addrinfo *ip; local
[all...]
/freebsd-12-stable/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_l2cap_raw.c959 ng_l2cap_l2ca_ping_ip *ip = NULL; local
969 NGM_L2CAP_L2CA_PING, sizeof(*ip) + p->echo_size,
979 ip = (ng_l2cap_l2ca_ping_ip *)(msg->data);
980 bcopy(&pcb->dst, &ip->bdaddr, sizeof(ip->bdaddr));
981 ip->echo_size = p->echo_size;
983 if (ip->echo_size > 0) {
984 error = copyin(p->echo_data, ip + 1, p->echo_size);
1025 ng_l2cap_l2ca_get_info_ip *ip = NULL; local
1039 NGM_L2CAP_L2CA_GET_INFO, sizeof(*ip)
[all...]
/freebsd-12-stable/sys/netipsec/
H A Dxform_ah.c58 #include <netinet/ip.h>
292 struct ip *ip; local
316 ip = mtod(m, struct ip *);
318 ip->ip_tos = 0;
319 ip->ip_ttl = 0;
320 ip->ip_sum = 0;
323 ip->ip_off &= htons(IP_DF);
325 ip
[all...]
/freebsd-12-stable/sys/netpfil/ipfw/
H A Dip_dn_io.c58 #include <netinet/ip.h> /* ip_len, ip_off */
419 struct ip *ip; local
420 ip = (struct ip *)mtodo(m, dn_tag_get(m)->iphdr_off);
422 switch (ip->ip_v) {
427 if ((ip->ip_tos & IPTOS_ECN_MASK) == IPTOS_ECN_NOTECT)
429 if ((ip->ip_tos & IPTOS_ECN_MASK) == IPTOS_ECN_CE)
436 old = *(uint16_t *)ip;
437 ip
[all...]
H A Ddn_sched_fq_pie.c65 #include <netinet/ip.h>
792 struct ip *ip; local
798 ip = (struct ip *)mtodo(m, dn_tag_get(m)->iphdr_off);
802 isip6 = (ip->ip_v == 6);
805 ip6 = (struct ip6_hdr *)ip;
833 *((uint8_t *) &tuple[0]) = ip->ip_p;
835 *((uint32_t *) &tuple[5]) = ip->ip_src.s_addr;
836 *((uint32_t *) &tuple[9]) = ip
[all...]
/freebsd-12-stable/usr.sbin/ppp/
H A Dradius.c39 #include <netinet/ip.h>
79 #include "ip.h"
261 struct in_addr ip; local
332 r->ip.s_addr = r->mask.s_addr = INADDR_NONE;
338 r->ip = rad_cvt_addr(data);
340 " IP %s\n", inet_ntoa(r->ip));
404 ip.s_addr = INADDR_ANY;
405 ncpaddr_setip4(&gw, ip);
406 ncprange_setip4host(&dest, ip);
423 ncprange_getip4addr(&dest, &ip);
[all...]
/freebsd-12-stable/contrib/gcc/config/arm/
H A Dcrti.asm55 mov ip, sp
56 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, ip, lr, pc}
57 sub fp, ip, #4
/freebsd-12-stable/contrib/less/
H A Dscreen.c2806 INPUT_RECORD ip; local
2829 PeekConsoleInput(tty, &ip, 1, &read);
2832 ReadConsoleInput(tty, &ip, 1, &read);
2834 if (mousecap && ip.EventType == MOUSE_EVENT &&
2835 ip.Event.MouseEvent.dwEventFlags != MOUSE_MOVED)
2837 x11mousebuf[3] = X11MOUSE_OFFSET + ip.Event.MouseEvent.dwMousePosition.X + 1;
2838 x11mousebuf[4] = X11MOUSE_OFFSET + ip.Event.MouseEvent.dwMousePosition.Y + 1;
2839 switch (ip.Event.MouseEvent.dwEventFlags)
2842 if (ip.Event.MouseEvent.dwButtonState == 0)
2844 else if (ip
[all...]
/freebsd-12-stable/sys/netinet/libalias/
H A Dalias_smedia.c117 #include <netinet/ip.h>
134 AliasHandleRtspOut(struct libalias *, struct ip *, struct alias_link *,
154 protohandler(struct libalias *la, struct ip *pip, struct alias_data *ah)
233 alias_rtsp_out(struct libalias *la, struct ip *pip,
417 alias_pna_out(struct libalias *la, struct ip *pip,
467 AliasHandleRtspOut(struct libalias *la, struct ip *pip, struct alias_link *lnk, int maxpacketsize)
/freebsd-12-stable/sys/kern/
H A Dmd5c.c63 uint32_t ip; local
66 ip = input[i];
67 *output++ = ip;
68 *output++ = ip >> 8;
69 *output++ = ip >> 16;
70 *output++ = ip >> 24;
/freebsd-12-stable/sys/arm/arm/
H A Dgenassym.c59 #include <netinet/ip.h>
98 ASSYM(IP_SRC, offsetof(struct ip, ip_src));
99 ASSYM(IP_DST, offsetof(struct ip, ip_dst));
/freebsd-12-stable/crypto/openssl/crypto/x509/
H A Dx509_vpm.c106 OPENSSL_free(param->ip);
220 if (test_x509_verify_param_copy(ip, NULL)) {
221 if (!X509_VERIFY_PARAM_set1_ip(dest, src->ip, src->iplen))
432 const unsigned char *ip, size_t iplen)
436 return int_x509_param_set1((char **)&param->ip, &param->iplen,
437 (char *)ip, iplen);
431 X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param, const unsigned char *ip, size_t iplen) argument
/freebsd-12-stable/usr.sbin/rrenumd/
H A Drrenumd.c47 #include <netinet/ip.h>
503 i -= sizeof(struct ip);
510 struct ip *ip = (struct ip *)rcvmhdr.msg_iov->iov_base; local
512 rr = (struct icmp6_router_renum *)(ip + 1);
/freebsd-12-stable/sys/dev/hme/
H A Dif_hme.c95 #include <netinet/ip.h>
880 n = (ETHER_HDR_LEN + sizeof(struct ip)) / 2;
951 struct ip *ip; local
970 m = m_pullup(*m0, i + sizeof(struct ip));
975 ip = (struct ip *)(mtod(m, caddr_t) + i);
976 i += (ip->ip_hl << 2);
1222 struct ip *ip; local
[all...]
/freebsd-12-stable/sys/netinet/
H A Dtcp_input.c92 #include <netinet/ip.h>
577 struct ip *ip = NULL; local
606 * The size of tcp_saveipgen must be the size of the max ip header,
615 isipv6 = (mtod(m, struct ip *)->ip_v == 6) ? 1 : 0;
668 if (off0 > sizeof (struct ip)) {
670 off0 = sizeof(struct ip);
679 ip = mtod(m, struct ip *);
680 th = (struct tcphdr *)((caddr_t)ip
3304 struct ip *ip; local
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dassembly.h120 pop {ip}; \
121 JMP(ip)
/freebsd-12-stable/contrib/netbsd-tests/net/arp/
H A Dt_dad.sh51 local ip=$2
56 atf_check -s exit:0 rump.ifconfig shmif0 inet $ip/24
/freebsd-12-stable/contrib/tcpdump/
H A Dprint-esp.c53 #include "ip.h"
676 const struct ip *ip; local
727 ip = (const struct ip *)bp2;
728 switch (IP_V(ip)) {
749 if (EXTRACT_16BITS(&ip->ip_off) & IP_MF)
751 len = EXTRACT_16BITS(&ip->ip_len);
757 UNALIGNED_MEMCMP(&sa->daddr.in4, &ip->ip_dst,
/freebsd-12-stable/contrib/unbound/util/
H A Dnet_help.h185 * Convert ip address string and port to sockaddr.
186 * @param ip: ip4 or ip6 address string.
192 int ipstrtoaddr(const char* ip, int port, struct sockaddr_storage* addr,
196 * Convert ip netblock (ip/netsize) string and port to sockaddr.
197 * performs a copy internally to avoid writing over 'ip' string.
198 * @param ip: ip4 or ip6 address string.
205 int netblockstrtoaddr(const char* ip, int port, struct sockaddr_storage* addr,
487 * - 24.10.100.51.198.rpz-ip -> 198.51.100.10/24
488 * - 32.10.zz.db8.2001.rpz-ip
[all...]
/freebsd-12-stable/contrib/wpa/src/common/
H A Ddhcp.h15 #define iphdr ip
28 #include <netinet/ip.h>
/freebsd-12-stable/contrib/ipfilter/ipsend/
H A Dsnit.c33 #include <netinet/ip.h>
127 if (len < (sizeof(sa->sa_data) + sizeof(struct ip)))
/freebsd-12-stable/bin/sh/
H A Dvar.c162 const struct varinit *ip; local
167 for (ip = varinit ; (vp = ip->var) != NULL ; ip++) {
168 if (find_var(ip->text, &vpp, &vp->name_len) != NULL)
172 vp->text = __DECONST(char *, ip->text);
173 vp->flags = ip->flags | VSTRFIXED | VTEXTFIXED;
174 vp->func = ip->func;
/freebsd-12-stable/cddl/lib/libdtrace/
H A Dudp.d28 #pragma D depends_on library ip.d
H A Dudplite.d29 #pragma D depends_on library ip.d
/freebsd-12-stable/sys/cddl/dev/dtrace/arm/
H A Ddtrace_asm.S192 strex ip, r2, [r0] /* Store new to target */
193 cmp ip, #0 /* Did the store succeed? */

Completed in 309 milliseconds

<<11121314151617181920>>