Home
last modified time | relevance | path

Searched refs:local_host (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/dports/devel/caf/actor-framework-0.18.5/libcaf_openssl/test/openssl/
H A Dremote_actor.cpp23 constexpr char local_host[] = "127.0.0.1"; variable
138 auto port1 = unbox(publish(server, 0, local_host)); in CAF_TEST_DISABLED()
139 auto port2 = unbox(publish(server, 0, local_host)); in CAF_TEST_DISABLED()
141 auto same_server = unbox(remote_actor(server_side, local_host, port2)); in CAF_TEST_DISABLED()
144 auto server1 = unbox(remote_actor(client_side, local_host, port1)); in CAF_TEST_DISABLED()
145 auto server2 = unbox(remote_actor(client_side, local_host, port2)); in CAF_TEST_DISABLED()
154 publish(server_side.spawn(make_pong_behavior), 0, local_host)); in CAF_TEST_DISABLED()
156 auto pong = unbox(remote_actor(client_side, local_host, port)); in CAF_TEST_DISABLED()
163 publish(server_side.spawn(make_sort_behavior), 0, local_host)); in CAF_TEST_DISABLED()
165 auto sorter = unbox(remote_actor(client_side, local_host, port)); in CAF_TEST_DISABLED()
[all …]
H A Dauthentication.cpp36 constexpr char local_host[] = "127.0.0.1"; variable
193 auto port = unbox(publish(spong, 0, local_host)); in CAF_TEST()
198 auto pong = unbox(remote_actor(client_side, local_host, port)); in CAF_TEST()
217 auto port = unbox(publish(spong, 0, local_host)); in CAF_TEST()
222 auto remote_pong = remote_actor(client_side, local_host, port); in CAF_TEST()
/dports/net/netembryo/netembryo-0.1.1/wsocket/
H A DSock.c174 if(!sock_ntop_host(sa_p, local_host, sizeof(local_host))) in Sock_accept()
175 memset(local_host, 0, sizeof(local_host)); in Sock_accept()
177 if (!(new_s->local_host = strdup(local_host))) { in Sock_accept()
219 char local_host[128]; in Sock_bind() local
259 if(!sock_ntop_host(sa_p, local_host, sizeof(local_host))) in Sock_bind()
260 memset(local_host, 0, sizeof(local_host)); in Sock_bind()
262 if (!(s->local_host = strdup(local_host))) { in Sock_bind()
320 free(s->local_host); in Sock_close()
418 if(!sock_ntop_host(sa_p, local_host, sizeof(local_host))) in Sock_connect()
419 memset(local_host, 0, sizeof(local_host)); in Sock_connect()
[all …]
H A Dget_info.c48 if(!(s->local_host)) { in get_local_host()
51 s->local_host = strdup(str); in get_local_host()
53 return s->local_host; in get_local_host()
/dports/devel/py-anyio/anyio-3.4.0/src/anyio/_core/
H A D_sockets.py37 remote_host: IPAddressType, remote_port: int, *, local_host: Optional[IPAddressType] = ...,
47 remote_host: IPAddressType, remote_port: int, *, local_host: Optional[IPAddressType] = ...,
143 if local_host:
144 gai_res = await getaddrinfo(str(local_host), None)
214 *, local_host: Optional[IPAddressType] = None, local_port: int = 0,
235 local_host = str(local_host) if local_host is not None else None
330 if family is AddressFamily.AF_UNSPEC and not local_host:
333 if local_host:
334 gai_res = await getaddrinfo(str(local_host), local_port, family=family,
370 if local_host:
[all …]
/dports/net/shadowsocks-libev/shadowsocks-libev-3.3.5/src/
H A Dplugin.c99 const char *local_host, in start_ss_plugin() argument
106 cork_env_add(env, "SS_LOCAL_HOST", local_host); in start_ss_plugin()
163 const char *local_host, in start_obfsproxy() argument
189 + strlen(remote_port) + strlen(local_host) + strlen(local_port); in start_obfsproxy()
192 remote_host, remote_port, local_host, local_port); in start_obfsproxy()
213 snprintf(buf, buf_size, "%s:%s", local_host, local_port); in start_obfsproxy()
218 snprintf(buf, buf_size, "%s:%s", local_host, local_port); in start_obfsproxy()
241 const char *local_host, argument
291 local_host, local_port, mode);
294 local_host, local_port, mode);
/dports/mail/mailfront/mailfront-2.22/
H A Dplugin-add-received.c13 static const char* local_host; variable
54 if (local_host && in fixup_received()
58 (strcasecmp(local_host, fixup_host.s) != 0 || in fixup_received()
60 if (!str_cat3s(s, "Received: from ", local_host, " (")) return 0; in fixup_received()
61 if (!str_cat4s(s, local_host, " [", local_ip.s, "])\n" in fixup_received()
88 if (!str_catfromby(s, local_host, 0, &local_ip)) return 0; in build_received()
117 local_host = getprotoenv("LOCALHOST"); in init()
/dports/net/p5-Net-SIP/Net-SIP-0.832/samples/
H A Dinvite_and_recv.pl79 my ($local_host,$local_port);
81 ($local_host,$local_port) = split( m/:/,$local_leg,2 );
85 ($local_host,$local_port) = $from =~m{\@([\w\-\.]+)(?::(\d+))?}
90 if ( $local_host ) {
91 my $addr = gethostbyname( $local_host )
92 || die "cannot get IP from SIP domain '$local_host'";
H A Dinvite_and_send.pl80 my ($local_host,$local_port);
82 ($local_host,$local_port) = split( m/:/,$local_leg,2 );
86 ($local_host,$local_port) = $from =~m{\@([\w\-\.]+)(?::(\d+))?}
91 if ( $local_host ) {
92 my $addr = gethostbyname( $local_host )
93 || die "cannot get IP from SIP domain '$local_host'";
/dports/net/p5-Net-Connection-Sort/Net-Connection-Sort-0.0.1/t/
H A Dhost_l.t73 ok( $sorted[0]->local_host eq '2.2.2.2', 'sort order 0') or die ('The first local host value was no…
74 ok( $sorted[3]->local_host eq '6.6.6.6', 'sort order 1') or die ('The last local host value was not…
75 ok( $sorted[2]->local_host eq '4.4.4.4', 'sort order 2') or die ('The middle local host value was n…
76 ok( $sorted[1]->local_host eq '4.4.4.4', 'sort order 2') or die ('The middle local host value was n…
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/lib/
H A Dhostname-unix.c33 gchar *local_host; in _resolve_localhost_from_dns() local
36 local_host = get_local_hostname_from_system(); in _resolve_localhost_from_dns()
37 host = gethostbyname(local_host); in _resolve_localhost_from_dns()
38 g_free(local_host); in _resolve_localhost_from_dns()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/linux/net/
H A Dether_addr.c141 char local_host[MAXHOSTNAMELEN]; local
168 if (!ether_line(buf, &local_ether, local_host)) {
172 strcpy(hostname, local_host);
194 char local_host[MAXHOSTNAMELEN]; local
219 if (!ether_line(buf, &local_ether, local_host)) {
220 if (!strcmp(hostname, local_host)) {
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/linux/net/
H A Dether_addr.c141 char local_host[MAXHOSTNAMELEN]; local
168 if (!ether_line(buf, &local_ether, local_host)) {
172 strcpy(hostname, local_host);
194 char local_host[MAXHOSTNAMELEN]; local
219 if (!ether_line(buf, &local_ether, local_host)) {
220 if (!strcmp(hostname, local_host)) {
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/
H A Dtcp_checker.rb7 def initialize(remote_host, remote_port, local_host = nil, local_port = nil) argument
10 @local_host = local_host
15 join_host_port(local_host, local_port)
25 local_host, local_port,
/dports/science/chrono/chrono-7.0.1/src/demos/cosimulation/
H A Ddemo_COSIM_socket.cpp40 ChHostInfo local_host; in main() local
43 GetLog() << " Name: " << local_host.getHostName() << "\n"; in main()
44 GetLog() << " Address: " << local_host.getHostIPAddress() << "\n"; in main()
86 …GetLog() << local_host.getHostName() << " will send a buffer of n." << stream_out.GetVector()->siz… in main()
/dports/net/gnetcat/netcat-0.7.1/src/
H A Dnetcat.c144 nc_host_t local_host; /* local host for bind()ing operations */ in main() local
151 memset(&local_host, 0, sizeof(local_host)); in main()
307 if (!netcat_resolvehost(&local_host, optarg)) in main()
312 if (!netcat_resolvehost(&connect_sock.local_host, optarg)) in main()
473 memcpy(&listen_sock.local_host, &local_host, sizeof(listen_sock.local_host)); in main()
560 memcpy(&connect_sock.local_host, &local_host, in main()
561 sizeof(connect_sock.local_host)); in main()
/dports/net/py-python-socks/python-socks-2.0.1/python_socks/async_/anyio/
H A D_connect.py8 local_host: str = None,
14 local_host=local_host,
/dports/lang/ruby26/ruby-2.6.9/ext/socket/
H A Dtcpsocket.c25 VALUE local_host, local_serv; in tcp_init() local
28 &local_host, &local_serv); in tcp_init()
31 local_host, local_serv, INET_CLIENT); in tcp_init()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/soc/qcom/
H A Dsmsm.c78 u32 local_host; member
245 val = readl(entry->subscription + smsm->local_host); in smsm_mask_irq()
247 writel(val, entry->subscription + smsm->local_host); in smsm_mask_irq()
270 val = readl(entry->subscription + smsm->local_host); in smsm_unmask_irq()
272 writel(val, entry->subscription + smsm->local_host); in smsm_unmask_irq()
500 &smsm->local_host); in qcom_smsm_probe()
538 smsm->local_state = states + smsm->local_host; in qcom_smsm_probe()
539 smsm->subscription = intr_mask + smsm->local_host * smsm->num_hosts; in qcom_smsm_probe()
567 writel(0, entry->subscription + smsm->local_host); in qcom_smsm_probe()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/soc/qcom/
H A Dsmsm.c78 u32 local_host; member
245 val = readl(entry->subscription + smsm->local_host); in smsm_mask_irq()
247 writel(val, entry->subscription + smsm->local_host); in smsm_mask_irq()
270 val = readl(entry->subscription + smsm->local_host); in smsm_unmask_irq()
272 writel(val, entry->subscription + smsm->local_host); in smsm_unmask_irq()
500 &smsm->local_host); in qcom_smsm_probe()
538 smsm->local_state = states + smsm->local_host; in qcom_smsm_probe()
539 smsm->subscription = intr_mask + smsm->local_host * smsm->num_hosts; in qcom_smsm_probe()
567 writel(0, entry->subscription + smsm->local_host); in qcom_smsm_probe()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/soc/qcom/
H A Dsmsm.c78 u32 local_host; member
245 val = readl(entry->subscription + smsm->local_host); in smsm_mask_irq()
247 writel(val, entry->subscription + smsm->local_host); in smsm_mask_irq()
270 val = readl(entry->subscription + smsm->local_host); in smsm_unmask_irq()
272 writel(val, entry->subscription + smsm->local_host); in smsm_unmask_irq()
500 &smsm->local_host); in qcom_smsm_probe()
538 smsm->local_state = states + smsm->local_host; in qcom_smsm_probe()
539 smsm->subscription = intr_mask + smsm->local_host * smsm->num_hosts; in qcom_smsm_probe()
567 writel(0, entry->subscription + smsm->local_host); in qcom_smsm_probe()
/dports/net/yate/yate-6.4.0-1/conf.d/
H A Dwiresniff.conf.sample12 ; local_host: ipaddr: Address of local interface,
14 ;local_host=
16 ; local_port: int: Local UDP port assigned to local_host
/dports/net-im/prosody-modules/Community-Modules-bb8459c220c9/mod_s2s_log_certs/
H A Dmod_s2s_log_certs.lua16 local local_host = session.direction == "outgoing" and session.from_host or session.to_host;
28 local seen_certs = dm_load(remote_host, local_host, "s2s_certs") or {};
37 dm_store(remote_host, local_host, "s2s_certs", seen_certs);
/dports/devel/py-anyio/anyio-3.4.0/tests/
H A Dtest_sockets.py519 local_host='localhost',
530 listener = await create_tcp_listener(local_host='localhost', family=family)
543 multi = await create_tcp_listener(family=family, local_host='localhost')
902 listeners: List[Listener] = [await create_tcp_listener(local_host='localhost')]
934 async with await create_udp_socket(family=family, local_host='localhost') as udp:
944 async with await create_udp_socket(local_host='localhost', family=family) as sock:
975 async with await create_udp_socket(family=family, local_host='localhost',
979 async with await create_udp_socket(family=family, local_host='localhost',
985 local_host='localhost') as udp:
1003 local_host='localhost') as udp:
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/aioquic/src/aioquic/asyncio/
H A Dclient.py51 local_host = "::"
67 local_host = "0.0.0.0"
84 local_addr=(local_host, local_port),

12345678910>>...19