Searched refs:ip_address (Results 1 - 25 of 29) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dconnect.h34 #include "host.h" /* for definition of ip_address */
43 int connect_to_ip (const ip_address *, int, const char *);
45 int bind_local (const ip_address *, int *);
52 bool socket_ip_address (int, ip_address *, int);
H A Dhost.h72 } ip_address; typedef in typeref:struct:__anon7549
88 const ip_address *address_list_address_at (const struct address_list *, int);
89 bool address_list_contains (const struct address_list *, const ip_address *);
95 const char *print_address (const ip_address *);
H A Dftp.h52 uerr_t ftp_pasv (int, ip_address *, int *);
55 uerr_t ftp_lpsv (int, ip_address *, int *);
57 uerr_t ftp_epsv (int, ip_address *, int *);
H A Dhost.c76 ip_address *addresses; /* pointer to the string of addresses */
98 const ip_address *
108 address_list_contains (const struct address_list *al, const ip_address *ip)
116 ip_address *cur = al->addresses + i;
126 ip_address *cur = al->addresses + i;
189 ip_address *ip;
199 al->addresses = xnew_array (ip_address, cnt);
228 #define IS_IPV4(addr) (((const ip_address *) addr)->family == AF_INET)
244 #define IS_IPV6(addr) (((const ip_address *) addr)->family == AF_INET6)
270 al->addresses = xnew_array (ip_address, coun
[all...]
H A Dconnect.c85 sockaddr_set_data (struct sockaddr *sa, const ip_address *ip, int port)
122 sockaddr_get_data (const struct sockaddr *sa, ip_address *ip, int *port)
194 static ip_address ip;
270 connect_to_ip (const ip_address *ip, int port, const char *print)
405 const ip_address *ip = address_list_address_at (al, i);
451 bind_local (const ip_address *bind_address, int *port)
546 socket_ip_address (int sock, ip_address *ip, int endpoint)
H A Dftp-basic.c250 ip_address_to_port_repr (const ip_address *addr, int port, char *buf,
273 ip_address addr;
326 ip_address_to_lprt_repr (const ip_address *addr, int port, char *buf,
363 ip_address addr;
414 ip_address_to_eprt_repr (const ip_address *addr, int port, char *buf,
438 ip_address addr;
493 ftp_pasv (int csock, ip_address *addr, int *port)
558 ftp_lpsv (int csock, ip_address *addr, int *port)
720 ftp_epsv (int csock, ip_address *ip, int *port)
H A Dftp.c118 ftp_do_pasv (int csock, ip_address *addr, int *port)
166 ip_address cip;
202 ftp_do_pasv (int csock, ip_address *addr, int *port)
773 ip_address passive_addr;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/bftpd-1.6.6/
H A Dbftpdutmp.h24 int bftpdutmp_dup_ip_count(char *ip_address);
H A Dbftpdutmp.c115 int bftpdutmp_dup_ip_count(char *ip_address) argument
126 if (tmp.bu_type && (! strcmp(tmp.bu_host, ip_address) ) )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/sio/
H A DDNSUtil.c216 * a numeric style address, you'll have the ip_address to fall back on.
220 GetHostEntry(struct hostent *const hp, const char *const host, struct in_addr *const ip_address, char *const hpbuf, size_t hpbufsize) argument
234 if (ip_address != NULL)
235 (void) memcpy(&ip_address->s_addr, hp->h_addr_list[0], (size_t) hp->h_length);
236 } else if (ip_address != NULL) {
237 (void) memcpy(ip_address, &ip, sizeof(struct in_addr));
241 if (ip_address != NULL)
242 ip_address->s_addr = INADDR_NONE;
245 if (ip_address != NULL)
246 (void) memcpy(&ip_address
[all...]
H A Dsio.h187 int GetHostEntry(struct hostent *const hp, const char *const host, struct in_addr *const ip_address, char *const hpbuf, size_t hpbufsize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/be2iscsi/
H A Dbe_mgmt.c377 req->ip_address.ip_type = BE2_IPV4;
378 req->ip_address.ip_address[0] = s_addr & 0x000000ff;
379 req->ip_address.ip_address[1] = (s_addr & 0x0000ff00) >> 8;
380 req->ip_address.ip_address[2] = (s_addr & 0x00ff0000) >> 16;
381 req->ip_address.ip_address[3] = (s_addr & 0xff000000) >> 24;
387 req->ip_address
[all...]
H A Dbe_cmds.h281 u8 ip_address[16]; member in struct:ip_address_format
716 struct ip_address_format ip_address; member in struct:tcp_connect_and_offload_in
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/qla4xxx/
H A Dql4_init.c228 int8_t ip_address[IPv6_ADDR_LEN] = {0} ; local
257 if (memcmp(&ha->ipv6_default_router_addr, ip_address,
1384 int8_t ip_address[IP_ADDR_LEN] = {0} ; local
1419 if (memcmp(ha->ip_address, ip_address, IP_ADDR_LEN) == 0 ||
1420 memcmp(ha->subnet_mask, ip_address, IP_ADDR_LEN) == 0)
H A Dql4_mbx.c347 memcpy(ha->ip_address, init_fw_cb->ipv4_addr,
348 min(sizeof(ha->ip_address), sizeof(init_fw_cb->ipv4_addr)));
H A Dql4_def.h475 uint8_t ip_address[IP_ADDR_LEN]; member in struct:scsi_qla_host
H A Dql4_os.c186 len = sprintf(buf, "%d.%d.%d.%d\n", ha->ip_address[0],
187 ha->ip_address[1], ha->ip_address[2],
188 ha->ip_address[3]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Dftp.c141 struct in_addr ip_address; local
189 hprc = GetHostEntry(&hp, fhost, &ip_address, cip->buf, cip->bufSize);
193 * in ip_address we can try.
202 if (ip_address.s_addr == INADDR_NONE) {
208 cip->servCtlAddr.sin_addr.s_addr = ip_address.s_addr;
217 * one thing to try (ip_address); if we do have one, we can try
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv4/netfilter/
H A Dnf_nat_snmp_basic.c606 unsigned long ip_address; /* pointer */ member in struct:snmp_v1_trap
965 if (!asn1_octets_decode(ctx, end, (unsigned char **)&trap->ip_address, &len))
1005 kfree((unsigned long *)trap->ip_address);
1129 kfree((unsigned long *)trap.ip_address);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-autoipd/
H A Dmain.c336 static ArpPacket *packet_new_probe(uint32_t ip_address, const uint8_t*hw_address, size_t *packet_len) { argument
342 info.target_ip_address = ip_address;
347 static ArpPacket *packet_new_announcement(uint32_t ip_address, const uint8_t* hw_address, size_t *packet_len) { argument
353 info.target_ip_address = ip_address;
354 info.sender_ip_address = ip_address;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-autoipd/
H A Dmain.c336 static ArpPacket *packet_new_probe(uint32_t ip_address, const uint8_t*hw_address, size_t *packet_len) { argument
342 info.target_ip_address = ip_address;
347 static ArpPacket *packet_new_announcement(uint32_t ip_address, const uint8_t* hw_address, size_t *packet_len) { argument
353 info.target_ip_address = ip_address;
354 info.sender_ip_address = ip_address;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/acpi/
H A Dactbl2.h462 u8 ip_address[16]; member in struct:acpi_ibft_nic
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/bfa/include/protocol/
H A Dfc.h894 u32 ip_address[4]; member in struct:fc_rnid_general_topology_data_s
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/zebra/
H A Dinterface.c1047 DEFUN (ip_address,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/driver/ndis/src/
H A Dlc_cdc_ether.c291 UInt32 ip_address; member in struct:__anon19
1550 m_status.ip_address = ndis_status.fIPAddress;

Completed in 422 milliseconds

12