Home
last modified time | relevance | path

Searched refs:host_address (Results 1 – 25 of 505) sorted by relevance

12345678910>>...21

/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnscore/include/dnscore/
H A Dhost_address.h127 typedef struct host_address host_address; typedef
128 struct host_address struct
130 struct host_address *next; argument
148 host_address *host_address_copy(const host_address *address);
151 host_address *host_address_copy_list(const host_address *address);
205 bool host_address_list_equals(const host_address *a, const host_address *b);
214 bool host_address_equals(const host_address *a, const host_address *b);
215 s32 host_address_compare(const host_address *a, const host_address *b);
217 bool host_address_match(const host_address *a, const host_address *b);
239 host_address *host_address_remove_host_address(host_address **address, host_address *ha_match);
[all …]
H A Ddns-udp.h169 host_address *name_server;
207 void dns_udp_handler_host_limit_set(const host_address* name_server,
224 void dns_udp_send_simple_message(const host_address* name_server, const u8 *fqdn, u16 qtype, u16 qc…
225 void dns_udp_send_recursive_message(const host_address* name_server, const u8 *fqdn, u16 qtype, u16…
226 ya_result dns_udp_send_simple_message_sync(const host_address* name_server, const u8 *fqdn, u16 qty…
227 ya_result dns_udp_send_recursive_message_sync(const host_address* name_server, const u8 *fqdn, u16 …
/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnscore/src/
H A Dhost_address.c62 host_address
137 host_address *
156 host_address *
380 host_address address; in host_address_list_contains_ip()
438 host_address address; in host_address_list_contains_ip_tsig()
697 host_address_append_host_address(host_address *address, const host_address *ha) in host_address_append_host_address()
909 host_address_equals(const host_address *a, const host_address *b) in host_address_equals()
934 host_address_list_equals(const host_address *a, const host_address *b) in host_address_list_equals()
979 host_address_compare(const host_address *a, const host_address *b) in host_address_compare()
1030 host_address_match(const host_address *a, const host_address *b) in host_address_match()
[all …]
/dports/devel/aws-c-io/aws-c-io-0.10.12/source/windows/
H A Dhost_resolver.c47 struct aws_host_address host_address; in aws_default_dns_resolve() local
49 host_address.allocator = allocator; in aws_default_dns_resolve()
52 host_address.record_type = AWS_ADDRESS_RECORD_TYPE_AAAA; in aws_default_dns_resolve()
56 host_address.record_type = AWS_ADDRESS_RECORD_TYPE_A; in aws_default_dns_resolve()
71 if (!host_address.host) { in aws_default_dns_resolve()
72 aws_string_destroy((void *)host_address.host); in aws_default_dns_resolve()
76 host_address.address = address; in aws_default_dns_resolve()
77 host_address.weight = 0; in aws_default_dns_resolve()
79 host_address.use_count = 0; in aws_default_dns_resolve()
80 host_address.connection_failure_count = 0; in aws_default_dns_resolve()
[all …]
/dports/net-im/beebeep/beebeep-code-r1476/src/core/
H A DNetworkManager.cpp105 if( host_address.isInSubnet( ne.subnet() ) ) in isInterfaceUp()
119 if( address_entry.ip() == host_address ) in isLocalHostAddress()
301 if( host_address.isNull() ) in broadcastSubnetFromIPv4HostAddress()
302 return host_address; in broadcastSubnetFromIPv4HostAddress()
304 if( isInLocalBroadcastAddresses( host_address ) ) in broadcastSubnetFromIPv4HostAddress()
305 return host_address; in broadcastSubnetFromIPv4HostAddress()
307 NetworkAddress network_address( host_address, 0 ); in broadcastSubnetFromIPv4HostAddress()
312 QString s_host_address = host_address.toString(); in broadcastSubnetFromIPv4HostAddress()
349 if( host_address.isInSubnet( subnet_parsed ) ) in isHostAddressInBroadcastSubnet()
406 QString ha_string = host_address.toString(); in splitInIPv4HostAddresses()
[all …]
/dports/devel/aws-c-io/aws-c-io-0.10.12/source/posix/
H A Dhost_resolver.c52 struct aws_host_address host_address; in aws_default_dns_resolve() local
57 host_address.record_type = AWS_ADDRESS_RECORD_TYPE_AAAA; in aws_default_dns_resolve()
60 host_address.record_type = AWS_ADDRESS_RECORD_TYPE_A; in aws_default_dns_resolve()
81 host_address.address = address; in aws_default_dns_resolve()
82 host_address.weight = 0; in aws_default_dns_resolve()
83 host_address.allocator = allocator; in aws_default_dns_resolve()
84 host_address.use_count = 0; in aws_default_dns_resolve()
85 host_address.connection_failure_count = 0; in aws_default_dns_resolve()
86 host_address.host = host_cpy; in aws_default_dns_resolve()
88 if (aws_array_list_push_back(output_addresses, &host_address)) { in aws_default_dns_resolve()
[all …]
/dports/net-mgmt/flowviewer/FlowViewer_4.5/
H A DFlowViewer_CleanHostCache50 while (($host_address,$host_name) = each(%host_names)) {
57 print "Fixed $host_address from $host_name ";
60 $host_names{$host_address} = $host_name;
63 push (@blanks,$host_address);
80 while (($host_address,$host_name) = each(%host_names)) {
82 delete $host_names{$host_address};
83 … print " Removed host_name: $host, host_address: $host_address from $names_directory/names\n\n";
/dports/science/py-dlib/dlib-19.22/dlib/sockets/
H A Dsockets_extensions.h46 ) : host_address(host_address_), port(port_) {} in network_address()
48 std::string host_address; member
59 if (a.host_address < b.host_address)
61 else if (a.host_address > b.host_address)
72 ) { return a.host_address == b.host_address && a.port == b.port; }
H A Dsockets_extensions.cpp41 serialize(item.host_address, out); in serialize()
52 deserialize(item.host_address, in); in deserialize()
63 out << item.host_address << ":" << item.port; in operator <<()
84 item.host_address = temp.substr(0, pos); in operator >>()
134 return connect(addr.host_address, addr.port); in connect()
/dports/devel/concurrentqueue/concurrentqueue-1.0.3-15-g0753496/benchmarks/dlib/sockets/
H A Dsockets_extensions.h46 ) : host_address(host_address_), port(port_) {} in network_address()
48 std::string host_address; member
59 if (a.host_address < b.host_address)
61 else if (a.host_address > b.host_address)
72 ) { return a.host_address == b.host_address && a.port == b.port; }
/dports/science/dlib-cpp/dlib-19.22/dlib/sockets/
H A Dsockets_extensions.h46 ) : host_address(host_address_), port(port_) {} in network_address()
48 std::string host_address; member
59 if (a.host_address < b.host_address)
61 else if (a.host_address > b.host_address)
72 ) { return a.host_address == b.host_address && a.port == b.port; }
/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnslg/include/dnslg/
H A Dresolv.h70 host_address *nameserver;
97 ya_result resolv_lookup_name_server(host_address **dest);
100 ya_result resolv_add_hostaddress(resolver_s *resolv, host_address *address);
113 ya_result resolv_address(host_address *src, host_address *dst, int ip_flags);
114 ya_result resolv_host_address_list(host_address *src, host_address *dst);
H A Dconfig-resolver.h58 host_address *search;
59 host_address *domain;
60 host_address *list;
74 host_address *nameserver;
110 host_address* resolver_nameservers_get();
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/networkremote/
H A Dtinysvcmdns.cpp47 QHostAddress host_address = network_address_entry.ip(); in TinySVCMDNS() local
48 if (host_address.protocol() == QAbstractSocket::IPv4Protocol) { in TinySVCMDNS()
49 ipv4 = qToBigEndian(host_address.toIPv4Address()); in TinySVCMDNS()
50 qLog(Debug) << " ipv4:" << host_address.toString(); in TinySVCMDNS()
51 } else if (host_address.protocol() == QAbstractSocket::IPv6Protocol) { in TinySVCMDNS()
52 ipv6 = host_address.toString(); in TinySVCMDNS()
53 qLog(Debug) << " ipv6:" << host_address.toString(); in TinySVCMDNS()
/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnslg/src/
H A Dresolv.c93 resolv_lookup_name_server(host_address **dest) in resolv_lookup_name_server()
96 host_address *address; in resolv_lookup_name_server()
128 MALLOC_OBJECT_OR_DIE(address, host_address, HOSTADDR_TAG); in resolv_lookup_name_server()
178 resolv_add_hostaddress(resolver_s *resolv, host_address *address) in resolv_add_hostaddress()
237 resolv_address(host_address *src, host_address *dst, int ip_flags) in resolv_address()
336 resolv_host_address_list(host_address *src, host_address *dst) in resolv_host_address_list()
/dports/lang/algol68g/algol68g-2.8.4/source/
H A Dinet.c59 struct hostent *host_address; in genie_http_content() local
115 if (host_address == NULL) { in genie_http_content()
120 COPY (&SIN_ADDR (&socket_address), H_ADDR (host_address), H_LENGTH (host_address)); in genie_http_content()
184 struct hostent *host_address; in genie_tcp_request() local
238 if (host_address == NULL) { in genie_tcp_request()
243 COPY (&SIN_ADDR (&socket_address), H_ADDR (host_address), H_LENGTH (host_address)); in genie_tcp_request()
310 struct hostent *host_address; in genie_http_content() local
359 if (host_address == NULL) { in genie_http_content()
363 COPY (&SIN_ADDR (&socket_address), H_ADDR (host_address), H_LENGTH (host_address)); in genie_http_content()
493 if (host_address == NULL) { in genie_tcp_request()
[all …]
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/modules/monitoring/test/php/library/Monitoring/Object/
H A DMacroTest.php18 $hostMock->host_address = '1.1.1.1';
22 … $this->assertEquals(Macro::resolveMacros('$HOSTADDRESS$', $hostMock), $hostMock->host_address);
25 … $this->assertEquals(Macro::resolveMacros('$host.address$', $hostMock), $hostMock->host_address);
33 $svcMock->host_address = '1.1.1.1';
38 … $this->assertEquals(Macro::resolveMacros('$HOSTADDRESS$', $svcMock), $svcMock->host_address);
42 … $this->assertEquals(Macro::resolveMacros('$host.address$', $svcMock), $svcMock->host_address);
/dports/dns/yadifa/yadifa-2.5.3-10333/sbin/yadifad/
H A Dctrl.h71 host_address *listen;
75 void ctrl_set_listen(host_address *hosts);
76 void ctrl_exclude_listen(host_address *address_list);
77 host_address* ctrl_get_listen();
H A Dserver_context.c877 host_address *ha_list = (host_address *)data; in server_context_create_append_all_ipv4_callback()
890 host_address *ha_list = (host_address *)data; in server_context_create_append_all_ipv6_callback()
902 host_address*
915 for(host_address *ha = real_listen; ha != NULL; ha = ha->next) in server_context_get_real_listen_addresses_from_config()
931 for(host_address *ha = real_listen; ha != NULL; ) in server_context_get_real_listen_addresses_from_config()
940 host_address list_head_with_default_port; in server_context_get_real_listen_addresses_from_config()
992 for(host_address *ha = real_listen; ha != NULL; ha = ha->next) in server_context_get_real_listen_addresses_from_config()
996 host_address *removed; in server_context_get_real_listen_addresses_from_config()
1010 for(host_address *ha = real_listen; ha != NULL; ha = ha->next) in server_context_get_real_listen_addresses_from_config()
1091 host_address *ha = real_listen; in server_context_create()
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/ndb/src/common/util/
H A DProcessInfo.cpp89 memset(host_address, 0, AddressStringLength); in invalidate()
179 strncpy(host_address, address_string, AddressStringLength); in setHostAddress()
180 host_address[AddressStringLength-1] = '\0'; in setHostAddress()
189 getnameinfo(addr, len, host_address, AddressStringLength, 0, 0, NI_NUMERICHOST); in setHostAddress()
195 Ndb_inet_ntop(AF_INET, addr, host_address, AddressStringLength); in setHostAddress()
240 host_address, application_port, path_prefix, uri_path); in getServiceUri()
243 host_address, path_prefix, uri_path); in getServiceUri()
/dports/comms/wsjtz/wsjtx/Network/
H A DNetworkServerLookup.cpp16 QHostAddress host_address {default_host_address}; in network_server_lookup() local
60 host_address = host_info.addresses ().at (i); in network_server_lookup()
65 if (required_protocol != host_address.protocol ()) in network_server_lookup()
84 return std::make_tuple (host_address, service_port); in network_server_lookup()
/dports/www/web2ldap/web2ldap-1.6.27/web2ldap/app/
H A Dlocate.py174 host_address = socket.gethostbyname(hostname)
203 host_address,
238 host_address = socket.gethostbyname(alias_name)
242 host_addresses.append(host_address)
246 for host_address in host_addresses:
255 host_address,
/dports/www/links/links-2.25/
H A Ddns.c241 static int memcmp_host_address(struct host_address *a, struct host_address *b) in memcmp_host_address()
251 struct host_address neww; in add_address()
252 struct host_address *e, *t; in add_address()
254 struct host_address *n; in add_address()
264 memset(&neww, 0, sizeof(struct host_address)); in add_address()
285 memmove(t + 1, t, (e - t) * sizeof(struct host_address)); in add_address()
287 memcpy(t, &neww, sizeof(struct host_address)); in add_address()
350 struct host_address ha; in rotate_addresses()
351 memcpy(&ha, &host->a[first_different], sizeof(struct host_address)); in rotate_addresses()
353 memcpy(&host->a[1], &ha, sizeof(struct host_address)); in rotate_addresses()
[all …]
/dports/audio/picard/picard-release-2.6.2/picard/browser/
H A Dbrowser.py88 def host_address(self): member in BrowserIntegration
105 host_address = '127.0.0.1'
107 host_address = '0.0.0.0' # nosec
111 self.server = ThreadingHTTPServer((host_address, port), RequestHandler)
114 log.info("Starting the browser integration (%s:%d)", host_address, port)
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/modules/monitoring/application/views/scripts/partials/object/
H A Dhost-header.phtml46 <?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
47 …" title="<?= $this->translate('IPv4 address') ?>"><?= $this->escape($object->host_address) ?></div>

12345678910>>...21