Home
last modified time | relevance | path

Searched refs:hostip (Results 1 – 25 of 360) sorted by relevance

12345678910>>...15

/dports/irc/inspircd/inspircd-3.11.0/tools/
H A Dtestssl45 my $hostip = shift @ARGV;
46 if ($hostip =~ /[^A-Za-z0-9.:-]/) {
47 say STDERR "Error: invalid hostname or IP address: $hostip";
59 print "Checking whether ${\CC_BOLD}$hostip/$port${\CC_RESET} is reachable ... ";
61 PeerAddr => $hostip,
82 print "Checking whether ${\CC_BOLD}$hostip/$port${\CC_RESET} is using plaintext ... ";
132 print "Checking whether ${\CC_BOLD}$hostip/$port${\CC_RESET} can have an SSL session negotiated ...…
134 PeerAddr => $hostip,
136 SSL_hostname => $hostip,
165 gnutls-cli-debug --port $port $hostip
[all …]
/dports/irc/eggdrop/eggdrop-1.9.1/scripts/
H A Dcmd_resolve.tcl20 if {[scan $arg "%s" hostip] != 1} {
23 putidx $idx "Looking up $hostip ..."
24 set hostip [split $hostip]
25 dnslookup $hostip resolve_callback $idx $hostip $lastbind
30 proc resolve_callback {ip host status idx hostip cmd} {
34 putidx $idx "Unable to resolve $hostip"
35 } elseif {[string tolower $ip] == [string tolower $hostip]} {
40 putcmdlog "#[idx2hand $idx]# $cmd $hostip"
/dports/mail/spambnc/usr/local/sb/
H A Dsb-blocklists-bodyhosts.rc56 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
65 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
74 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
113 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
122 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
131 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
171 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
180 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
189 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
230 INCLUDERC=${SBDIR}/functions/dnsbl-hostip-sub.rc
[all …]
/dports/www/perlbal/Perlbal-1.80/lib/Perlbal/
H A DReproxyManager.pm233 while (my ($hostip, $dat) = each %ReproxyConnecting) {
234 $out->("connecting $hostip 1") if defined $dat;
236 while (my ($hostip, $dat) = each %ReproxyBored) {
237 $out->("bored $hostip " . scalar(@$dat));
239 while (my ($hostip, $dat) = each %ReproxyQueues) {
240 $out->("clients_queued $hostip " . scalar(@$dat));
242 while (my ($hostip, $dat) = each %ReproxyBackends) {
243 $out->("backends $hostip " . scalar(@$dat));
248 while (my ($hostip, $dat) = each %ReproxyMax) {
249 $out->("SERVER max_reproxy_connections($hostip) = $dat");
/dports/audio/mumble/mumble-1.3.3/plugins/lol/
H A Dlol.cpp109 char hostip[16]; in fetch() local
120 peekProc(hostipptr, hostip) && in fetch()
127 hostip[sizeof(hostip) - 1] = '\0'; in fetch()
131 if (strcmp(hostip, prev_hostip) != 0 || hostport != prev_hostport) { in fetch()
134 strcpy_s(prev_hostip, sizeof(prev_hostip), hostip); in fetch()
137 if (strcmp(hostip, "") != 0) { in fetch()
139 sprintf_s(buffer, sizeof(buffer), "{\"ipport\": \"%s:%d\"}", hostip, hostport); in fetch()
/dports/audio/murmur/mumble-1.3.3/plugins/lol/
H A Dlol.cpp109 char hostip[16]; in fetch() local
120 peekProc(hostipptr, hostip) && in fetch()
127 hostip[sizeof(hostip) - 1] = '\0'; in fetch()
131 if (strcmp(hostip, prev_hostip) != 0 || hostport != prev_hostport) { in fetch()
134 strcpy_s(prev_hostip, sizeof(prev_hostip), hostip); in fetch()
137 if (strcmp(hostip, "") != 0) { in fetch()
139 sprintf_s(buffer, sizeof(buffer), "{\"ipport\": \"%s:%d\"}", hostip, hostport); in fetch()
/dports/audio/murmur/mumble-1.3.3/plugins/wolfet/
H A Dwolfet.cpp92 char hostip[32]; in fetch() local
94 ok = peekProc(0x009FFD30, hostip, sizeof(hostip)) && in fetch()
95 peekProc(0x010B4908, mapname, sizeof(hostip)); in fetch()
96 hostip[sizeof(hostip)-1] = '\0'; in fetch()
99 …context = "{\"ipport\":\"" + std::string(hostip) + "\",\"map\":\"" + mapname + "\",\"team\":" + (c… in fetch()
/dports/audio/mumble/mumble-1.3.3/plugins/wolfet/
H A Dwolfet.cpp92 char hostip[32]; in fetch() local
94 ok = peekProc(0x009FFD30, hostip, sizeof(hostip)) && in fetch()
95 peekProc(0x010B4908, mapname, sizeof(hostip)); in fetch()
96 hostip[sizeof(hostip)-1] = '\0'; in fetch()
99 …context = "{\"ipport\":\"" + std::string(hostip) + "\",\"map\":\"" + mapname + "\",\"team\":" + (c… in fetch()
/dports/devel/dbus/dbus-1.12.20/tools/
H A Ddbus-print-message.c188 char hostip[INET6_ADDRSTRLEN]; in print_fd() local
276 if (inet_ntop (AF_INET, &addr.ipv4.sin_addr, hostip, sizeof (hostip))) in print_fd()
279 printf ("name %s port %u\n", hostip, ntohs (addr.ipv4.sin_port)); in print_fd()
281 if (has_peer && inet_ntop (AF_INET, &peer.ipv4.sin_addr, hostip, sizeof (hostip))) in print_fd()
284 printf ("peer %s port %u\n", hostip, ntohs (peer.ipv4.sin_port)); in print_fd()
292 if (inet_ntop (AF_INET6, &addr.ipv6.sin6_addr, hostip, sizeof (hostip))) in print_fd()
295 printf ("name %s port %u\n", hostip, ntohs (addr.ipv6.sin6_port)); in print_fd()
297 if (has_peer && inet_ntop (AF_INET6, &peer.ipv6.sin6_addr, hostip, sizeof (hostip))) in print_fd()
300 printf ("peer %s port %u\n", hostip, ntohs (peer.ipv6.sin6_port)); in print_fd()
/dports/sysutils/p5-Sys-HostIP/Sys-HostIP-1.93/
H A DREADME10 my $hostip = Sys::HostIP->new;
11 my $ips = $hostip->ips;
12 my $interfaces = $hostip->interfaces;
26 my $hostip = Sys::HostIP->new( ifconfig => '/path/to/your/ifconfig' );
38 my $if_info = $hostip->if_info;
41 my $hostip = Sys::HostIP->new( if_info => {...} );
45 my $ip = $hostip->ip;
53 my $all_ips = $hostip->ips;
61 my $interfaces = $hostip->interfaces;
/dports/sysutils/p5-Sys-HostIP/Sys-HostIP-1.93/t/
H A Dbase.t9 my $hostip = Sys::HostIP->new;
13 my $class_ip = $hostip->ip;
19 my $class_ips = $hostip->ips;
34 my $interfaces = $hostip->interfaces;
/dports/sysutils/LPRng/lprng-3.8.C/UTILS/
H A Dsmbprint91 ${username:+-U} ${username} ${hostip:+-I} $hostip -N ${workgroup:+-W} $workgroup \
98 ${username:+-U} ${username} ${hostip:+-I} $hostip -N ${workgroup:+-W} $workgroup \
/dports/sysutils/LPRngTool/LPRngTool-1.3.2/
H A Dsmbprint91 ${username:+-U} ${username} ${hostip:+-I} $hostip -N ${workgroup:+-W} $workgroup \
98 ${username:+-U} ${username} ${hostip:+-I} $hostip -N ${workgroup:+-W} $workgroup \
/dports/net/samba412/samba-4.12.15/python/samba/provision/
H A Dsambadns.py410 if hostip is not None:
412 at_a_record = ARecord(hostip)
460 if hostip:
461 a_record = ARecord(hostip)
516 hostip, hostip6): argument
526 hostip, hostip6)
744 if hostip is not None:
1033 hostip, hostip6, dnsadmins_sid): argument
1040 hostname, hostip, hostip6)
1201 dns_backend, os_level, site=site, dnspass=dnspass, hostip=hostip,
[all …]
/dports/mail/mimedefang/mimedefang-2.84/t/unit/
H A Drelay.t12 my($hostip, $hostname) = @_;
49 if ($hostip =~ m/^192/) {
59 if ($hostip =~ m/^192/) {
69 if ($hostip =~ m/^192/) {
79 if ($hostip =~ m/^192/) {
89 if ($hostip =~ m/^192/) {
95 if (!($hostip =~ m/^192/)) {
/dports/mail/postfix-logwatch/postfix-logwatch-1.40.03/
H A Dpostfix-logwatch2729 my $host = $p1; my $hostip;
2731 $host = formathost($hostip,$host);
2970 $fmthost = formathost($hostip,$host);
3058 $Counts{$reject_name}{$hostip}++
3150 $fmthost = formathost ($hostip,$host);
3224 my ($hip,$host,$hostip) = ($1,$2,$3);
3544 $fmthost = formathost($hostip,$host);
3624 $fmthost = formathost($hostip,$host);
3641 my ($error,$stage,$host,$hostip) = ($1,$2,$3,$4);
3647 my ($error,$stage,$host,$hostip) = ($1,$2,$3,$4);
[all …]
/dports/sysutils/logwatch/logwatch-7.5.1/scripts/services/
H A Dpostfix2735 my $host = $p1; my $hostip;
2737 $host = formathost($hostip,$host);
2976 $fmthost = formathost($hostip,$host);
3064 $Counts{$reject_name}{$hostip}++
3156 $fmthost = formathost ($hostip,$host);
3230 my ($hip,$host,$hostip) = ($1,$2,$3);
3550 $fmthost = formathost($hostip,$host);
3630 $fmthost = formathost($hostip,$host);
3647 my ($error,$stage,$host,$hostip) = ($1,$2,$3,$4);
3653 my ($error,$stage,$host,$hostip) = ($1,$2,$3,$4);
[all …]
/dports/net/xprobe/xprobe2-0.3/src/xpmodules/os_probe/icmp_port_unreach/
H A Dbuild_DNS_reply.cc13 struct hostent *hostip; in build_DNS_reply() local
17 if ((hostip = gethostbyname(DNSMASQUERADE)) == NULL) { in build_DNS_reply()
21 memcpy (&secfocip, hostip->h_addr, hostip->h_length); in build_DNS_reply()
/dports/net/xprobe/xprobe2-0.3/src/xpmodules/alive_probe/ttl_calc/
H A Dbuild_DNS_reply.cc13 struct hostent *hostip; in build_DNS_reply() local
17 if ((hostip = gethostbyname(DNSMASQUERADE)) == NULL) { in build_DNS_reply()
21 memcpy (&secfocip, hostip->h_addr, hostip->h_length); in build_DNS_reply()
/dports/www/py-selenium/selenium-3.141.0/selenium/webdriver/blackberry/
H A Dwebdriver.py54 hostip='169.254.0.1', port=1338, desired_capabilities={}): argument
55 remote_addr = 'http://{}:{}'.format(hostip, port)
77 str(hostip),
91 str(hostip),
/dports/irc/unreal/Unreal3.2.10.7/extras/
H A Ddefizzer.c70 char hostip[128], mo[100], mo2[100]; in ban_fizzer() local
83 strlcpy(hostip, Inet_ia2p(&cptr->ip), sizeof(hostip)); in ban_fizzer()
85 tkllayer[4] = hostip; in ban_fizzer()
/dports/ftp/wzdftpd/wzdftpd-0.8.3/libwzd-core/
H A Dwzd_ClientThread.c1626 …(context->hostip[offset+0] == 192 && context->hostip[offset+1] == 168 && context->hostip[offset+2]… in do_pasv()
1627 …(context->hostip[offset+0] == 127 && context->hostip[offset+1] == 0 && context->hostip[offset+2] =… in do_pasv()
1729 (context->hostip[0] == 172 && context->hostip[1] == 16) || in do_pasv()
1730 (context->hostip[0] == 192 && context->hostip[1] == 168 && context->hostip[2] == 0) || in do_pasv()
1731 …(context->hostip[0] == 127 && context->hostip[1] == 0 && context->hostip[2] == 0 && context->hosti… in do_pasv()
1907 (context->hostip[0] == 172 && context->hostip[1] == 16) || in do_epsv()
1908 (context->hostip[0] == 192 && context->hostip[1] == 168 && context->hostip[2] == 0) || in do_epsv()
1909 …(context->hostip[0] == 127 && context->hostip[1] == 0 && context->hostip[2] == 0 && context->hosti… in do_epsv()
1988 (context->hostip[0] == 172 && context->hostip[1] == 16) || in do_epsv()
1989 (context->hostip[0] == 192 && context->hostip[1] == 168 && context->hostip[2] == 0) || in do_epsv()
[all …]
/dports/net/asterisk-chan_sccp/chan-sccp-4.3.3/contrib/get_phone_log/
H A Dretrieve_phone_debug_logs.py5 def retrieve_debug_logs(hostip, outdirectory): argument
7 host = socket.gethostbyaddr(hostip)[0]
9 print("could not resolve hostname: %s, error:%s" %(hostip))
/dports/security/knocker/knocker-0.8.0/src/
H A Dknocker_core.c51 static int knocker_core_set_host_ip_string (knocker_core_host_t * hinfo, const char *hostip);
739 static int knocker_core_set_host_ip_string (knocker_core_host_t * hinfo, const char *hostip) in knocker_core_set_host_ip_string() argument
741 if (hostip == NULL) in knocker_core_set_host_ip_string()
753 hinfo->ip = malloc (strlen (hostip) + 1); in knocker_core_set_host_ip_string()
754 strcpy (hinfo->ip, hostip); in knocker_core_set_host_ip_string()
762 if (strcmp (hinfo->ip, hostip)) in knocker_core_set_host_ip_string()
764 hinfo->ip = realloc (hinfo->ip, strlen (hostip) + 1); in knocker_core_set_host_ip_string()
765 strcpy (hinfo->ip, hostip); in knocker_core_set_host_ip_string()
/dports/net/samba412/samba-4.12.15/packaging/printing/
H A Dsmbprint82 cat | /usr/bin/smbclient "$share" "$password" -E ${hostip:+-I} \
83 $hostip -N -P $usercmd "$user" $workgroupcmd "$workgroup" \

12345678910>>...15