HomeSort by: relevance | last modified time | path
    Searched refs:ipaddr (Results 1 - 25 of 47) sorted by relevancy

1 2

  /src/external/bsd/wpa/dist/src/ap/
dhcp_snoop.c 117 if (sta->ipaddr == b->your_ip)
120 if (sta->ipaddr != 0) {
123 ipaddr_str(be_to_host32(sta->ipaddr)));
125 (u8 *) &sta->ipaddr);
136 sta->ipaddr = b->your_ip;
ap_drv_ops.h 342 int version, const u8 *ipaddr,
348 return hapd->driver->br_add_ip_neigh(hapd->drv_priv, version, ipaddr,
353 u8 version, const u8 *ipaddr)
359 ipaddr);
accounting.c 135 if (sta->ipaddr &&
138 be_to_host32(sta->ipaddr))) {
dpp_hostapd.c 375 const struct hostapd_ip_addr *ipaddr,
393 if (ipaddr) {
396 ipaddr, tcp_port,
842 struct hostapd_ip_addr ipaddr; local
873 os_memcpy(&ipaddr, peer_bi->host, sizeof(ipaddr));
878 res = hostapd_parse_ip_addr(addr, &ipaddr);
959 &ipaddr, tcp_port, hapd->conf->dpp_name,
3223 struct hostapd_ip_addr *ipaddr = NULL; local
3242 ipaddr = &ipaddr_buf
    [all...]
sta_info.h 104 be32 ipaddr; member in struct:sta_info
  /src/crypto/external/bsd/openssh/dist/
auth-rhosts.c 58 const char *ipaddr, const char *client_user,
154 !innetgr(host + 1, ipaddr, NULL, NULL))
157 strcmp(host, ipaddr) != 0)
192 const char *ipaddr)
200 debug2_f("clientuser %s hostname %s ipaddr %s",
201 client_user, hostname, ipaddr);
242 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
245 "/etc/hosts.equiv.", hostname, ipaddr);
248 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
251 "%.100s.", hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV)
    [all...]
auth2-hostbased.c 175 const char *resolvedname, *ipaddr, *lookup, *reason; local
184 ipaddr = ssh_remote_ipaddr(ssh);
186 debug2_f("chost %s resolvedname %s ipaddr %s",
187 chost, resolvedname, ipaddr);
205 chost, ipaddr, resolvedname);
206 if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0) {
209 cuser, resolvedname, ipaddr);
match.c 208 match_host_and_ip(const char *host, const char *ipaddr,
213 if ((mip = addr_match_list(ipaddr, patterns)) == -2)
214 return -1; /* error in ipaddr match */
215 else if (host == NULL || ipaddr == NULL || mip == -1)
229 * If user, host and ipaddr are all NULL then validate pattern/
233 match_user(const char *user, const char *host, const char *ipaddr,
240 if (user == NULL && host == NULL && ipaddr == NULL) {
258 ret = match_host_and_ip(host, ipaddr, p);
auth.c 103 const char *hostname = NULL, *ipaddr = NULL; local
113 ipaddr = ssh_remote_ipaddr(ssh);
125 match_ip = match_hostname(ipaddr, hp);
154 match_ip = match_hostname(ipaddr, hp);
253 ipaddr = ssh_remote_ipaddr(ssh);
259 r = match_user(pw->pw_name, hostname, ipaddr,
275 r = match_user(pw->pw_name, hostname, ipaddr,
  /src/external/bsd/wpa/dist/wpa_supplicant/examples/
p2p-action.sh 44 ipaddr=`echo "$*" | sed 's/.* ip_addr=\([^ ]*\).*/\1/'`
47 if echo "$ipaddr$ipmask$goipaddr" | grep -q ' '; then
48 ipaddr=""
52 if [ -n "$ipaddr" ]; then
53 sudo ifconfig $GIFNAME "$ipaddr" netmask "$ipmask"
  /src/sys/netinet/
ip_input.c 906 struct sockaddr_in ipaddr = { local
907 .sin_len = sizeof(ipaddr),
928 ipaddr.sin_addr = ip->ip_dst;
931 ifa = ifa_ifwithaddr(sintosa(&ipaddr));
958 memcpy((void *)&ipaddr.sin_addr, (void *)(cp + off),
959 sizeof(ipaddr.sin_addr));
963 ifa = ifa_ifwithladdr(sintosa(&ipaddr));
973 error = ip_rtaddr(ipaddr.sin_addr, &addr);
982 ip->ip_dst = ipaddr.sin_addr;
992 struct sockaddr_in ipaddr = local
1077 struct sockaddr_in ipaddr = { local
1109 struct sockaddr_in ipaddr = { local
    [all...]
  /src/sys/net/
if_ether.h 132 #define ETHER_MAP_IP_MULTICAST(ipaddr, enaddr) \
133 /* const struct in_addr *ipaddr; */ \
139 (enaddr)[3] = ((const uint8_t *)ipaddr)[1] & 0x7f; \
140 (enaddr)[4] = ((const uint8_t *)ipaddr)[2]; \
141 (enaddr)[5] = ((const uint8_t *)ipaddr)[3]; \
  /src/usr.sbin/rarpd/
rarpd.c 190 init_one(char *ifname, u_int32_t ipaddr)
227 p->ii_ipaddr = ipaddr;
714 update_arptab(u_char *ep, u_int32_t ipaddr)
722 sin->sin_addr.s_addr = ipaddr;
774 rarp_reply(struct if_info *ii, struct ether_header *ep, u_int32_t ipaddr,
787 (void)mkarp((u_int8_t *)ar_sha(ap), ipaddr);
789 update_arptab((u_char *) & ap->arp_sha, ipaddr);
808 memmove(ar_tpa(ap), (char *) &ipaddr, 4);
823 memmove((char *) ap->arp_tpa, (char *) &ipaddr, 4);
mkarp.c 114 mkarp(u_char *haddr, u_int32_t ipaddr)
145 sin->sin_addr.s_addr = ipaddr;
  /src/external/mpl/bind/dist/lib/dns/include/dns/
peer.h 81 dns_peer_new(isc_mem_t *mem, const isc_netaddr_t *ipaddr, dns_peer_t **peer);
84 dns_peer_newprefix(isc_mem_t *mem, const isc_netaddr_t *ipaddr,
  /src/external/bsd/unbound/dist/ipset/
ipset.c 86 static int add_to_ipset(filter_dev dev, const char *setname, const void *ipaddr, int af) {
122 addr.pfra_ip4addr = *(struct in_addr *)ipaddr;
126 addr.pfra_ip6addr = *(struct in6_addr *)ipaddr;
142 static int add_to_ipset(filter_dev dev, const char *setname, const void *ipaddr, int af) {
171 | NLA_F_NET_BYTEORDER, (af == AF_INET ? sizeof(struct in_addr) : sizeof(struct in6_addr)), ipaddr);
  /src/external/bsd/ipf/dist/tools/
ippool_y.y 94 %type <ipa> ipaddr mask
354 ipaddr '/' mask { $$[0] = $1;
359 | ipaddr { $$[0] = $1;
373 ipaddr: ipv4 { $$.adf_addr.in4 = $1; label
533 YY_STR ':' ipaddr { int size = sizeof(*$$) + strlen($1) + 1;
544 | ipaddr { $$ = calloc(1, sizeof(*$$));
ipscan_y.y 58 %type <ipa> ipaddr
163 IPSL_REDIRECT '(' ipaddr ')' { $$.act_ip = $3;
165 | IPSL_REDIRECT '(' ipaddr ',' portnum ')'
171 ipaddr: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER label
ipf_y.y 114 %type <ipp> addr ipaddr
1021 | ipaddr { $$ = $1;
1025 ipaddr: IPFY_ANY { memset(&($$), 0, sizeof($$)); label
1189 ipaddr { $$ = newalist(NULL);
1194 | ipaddr ',' { yyexpectaddr = 1; } addrlist
1209 ipaddr { $$ = newalist(NULL);
1214 | '!' ipaddr { $$ = newalist(NULL);
1220 | poollist ',' ipaddr
1226 | poollist ',' '!' ipaddr
  /src/external/bsd/libbind/dist/irs/
irp.c 160 long ipaddr; local
193 if (inet_pton(AF_INET, irphost, &ipaddr) != 1) {
206 iaddr.sin_addr.s_addr = ipaddr;
  /src/external/bsd/wpa/dist/src/common/
dpp_tcp.c 62 struct hostapd_ip_addr ipaddr; member in struct:dpp_relay_controller
152 os_memcpy(&ctrl->ipaddr, config->ipaddr, sizeof(*config->ipaddr));
159 hostapd_ip_txt(&ctrl->ipaddr, txt, sizeof(txt)));
212 if (ctrl->ipaddr.af == AF_INET &&
213 addr->sin_addr.s_addr == ctrl->ipaddr.u.v4.s_addr)
218 dpp->tmp_controller->ipaddr.af == AF_INET &&
219 addr->sin_addr.s_addr == dpp->tmp_controller->ipaddr.u.v4.s_addr)
402 const struct hostapd_ip_addr *ipaddr,
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
peer.h 132 dns_peer_new(isc_mem_t *mem, const isc_netaddr_t *ipaddr, dns_peer_t **peer);
135 dns_peer_newprefix(isc_mem_t *mem, const isc_netaddr_t *ipaddr,
  /src/external/bsd/ipf/dist/lib/
save_v1trap.c 301 maketrap_v1(community, buffer, bufsize, msg, msglen, ipaddr, when)
307 u_32_t ipaddr;
359 bcopy(&ipaddr, s, 4);
  /src/crypto/dist/ipsec-tools/src/setkey/
parse.y 148 %type <res> ipaddr ipandport
223 : DELETEALL ipaddropts ipaddr ipaddr protocol_spec EOT
327 | PR_ESPUDP ipaddr
785 ipaddr
  /src/external/bsd/nsd/dist/contrib/bind2nsd/bind2nsd/
Parser.py 117 ipaddr = val
128 self.named.keys[ii].addIpAddr(ipaddr)

Completed in 32 milliseconds

1 2