Home
last modified time | relevance | path

Searched refs:connection_out (Results 1 – 25 of 33) sorted by relevance

12

/dports/comms/owfs/owfs-3.2p4/module/owlib/src/c/
H A Dow_connect_out.c25 struct connection_out *NewOut(void) in NewOut()
27 size_t len = sizeof(struct connection_out); in NewOut()
28 struct connection_out *now = (struct connection_out *) owmalloc(len); in NewOut()
48 struct connection_out *next = Outbound_Control.head; in FreeOutAll()
49 struct connection_out *now; in FreeOutAll()
H A Dow_net_server.c32 static GOOD_OR_BAD ServerAddr(const char * default_port, struct connection_out *out);
33 static GOOD_OR_BAD ServerListen(struct connection_out *out);
38 static void ProcessListenSocket( struct connection_out * out ) ;
91 static GOOD_OR_BAD ServerListen(struct connection_out *out) in ServerListen()
127 GOOD_OR_BAD ServerOutSetup(struct connection_out *out) in ServerOutSetup()
173 struct connection_out * out ; in SetupListenSet()
190 struct connection_out * out ; in SetupListenSockets()
206 struct connection_out * out ; in CloseListenSockets()
216 struct connection_out * out ; in ProcessListenSet()
228 struct connection_out * out;
[all …]
H A Dow_avahi_announce.c32 static void create_services(struct connection_out * out) ;
37 struct connection_out * out = v ; in entry_group_callback()
63 static void create_services(struct connection_out * out) in create_services()
166 struct connection_out * out = v ; in client_callback()
213 GOOD_OR_BAD OW_Avahi_Announce( struct connection_out *out ) in OW_Avahi_Announce()
H A Dow_zero.c29 struct connection_out * out = v ; in RegisterBack()
59 struct connection_out *out = v; in Announce()
118 void ZeroConf_Announce(struct connection_out *out) in ZeroConf_Announce()
140 void ZeroConf_Announce(struct connection_out *out) in ZeroConf_Announce()
H A Dow_browse_resolve.c18 static struct connection_out *FindOut(const char * name, const char * type, const char * domain);
103 static struct connection_out *FindOut(const char * name, const char * type, const char * domain) in FindOut()
105 struct connection_out *now ; in FindOut()
H A Dow_systemd.c27 struct connection_out *out = NewOut(); in Setup_Systemd()
H A Dow_launchd.c25 struct connection_out *out = NewOut(); in Launchd_out()
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/integration/targets/collections/
H A Dinventory_test.yml9 register: connection_out
13 - connection_out.stdout == "localconn ran echo 'hello world'"
15 - connection_out.stderr == "connectionvar is from_play"
24 - hostvars['dynamic_host_a'].connection_out.stdout == "localconn ran echo 'hello world'"
26 … - hostvars['dynamic_host_redirected'].connection_out.stdout == "localconn ran echo 'hello world'"
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/integration/targets/collections/
H A Dinventory_test.yml9 register: connection_out
13 - connection_out.stdout == "localconn ran echo 'hello world'"
15 - connection_out.stderr == "connectionvar is from_play"
24 - hostvars['dynamic_host_a'].connection_out.stdout == "localconn ran echo 'hello world'"
26 … - hostvars['dynamic_host_redirected'].connection_out.stdout == "localconn ran echo 'hello world'"
/dports/comms/owfs/owfs-3.2p4/module/owlib/src/include/
H A Dow_connection_out.h28 struct connection_out { struct
29 struct connection_out *next; argument
65 struct connection_out * head ; // head of a linked list of "bus" entries argument
H A Dow_avahi.h24 struct connection_out ;
28 GOOD_OR_BAD OW_Avahi_Announce( struct connection_out *out ) ;
H A Dow_connection.h209 struct connection_out *NewOut(void);
212 void ZeroConf_Announce(struct connection_out *out);
H A Dow.h331 struct connection_out;
/dports/security/gnome-ssh-askpass/openssh-6.6p1/
H A Dpacket.c112 int connection_out; member
211 s->connection_out = -1; in alloc_session_state()
231 active_state->connection_out = fd_out; in packet_set_connection()
458 set_nonblock(active_state->connection_out); in packet_set_nonblocking()
474 return active_state->connection_out; in packet_get_connection_out()
487 close(active_state->connection_out); in packet_close()
490 close(active_state->connection_out); in packet_close()
2023 close(active_state->connection_out); in packet_backup_state()
2024 active_state->connection_out = -1; in packet_backup_state()
2048 active_state->connection_out = backup_state->connection_out; in packet_restore_state()
[all …]
H A Dserverloop.c106 static int connection_out; /* Connection to client (output). */ variable
350 FD_SET(connection_out, *writesetp); in wait_until_can_do_something()
512 if (FD_ISSET(connection_out, writeset)) in process_output()
600 connection_out = packet_get_connection_out(); in server_loop()
614 max_fd = MAX(connection_in, connection_out); in server_loop()
701 max_fd = MAX(connection_in, connection_out); in server_loop()
836 connection_out = packet_get_connection_out(); in server_loop2()
846 max_fd = MAX(connection_in, connection_out); in server_loop2()
H A Dsshconnect.c518 send_client_banner(int connection_out, int minor1) in send_client_banner() argument
528 if (roaming_atomicio(vwrite, connection_out, client_version_string, in send_client_banner()
545 int connection_out = packet_get_connection_out(); in ssh_exchange_identification() local
562 send_client_banner(connection_out, 0); in ssh_exchange_identification()
675 send_client_banner(connection_out, minor1); in ssh_exchange_identification()
H A Dclientloop.c160 static int connection_out; /* Connection to server (output). */ variable
624 FD_SET(connection_out, *writesetp); in client_wait_until_can_do_something()
1500 connection_out = packet_get_connection_out(); in client_loop()
1501 max_fd = MAX(connection_in, connection_out); in client_loop()
1637 connection_out = packet_get_connection_out(); in client_loop()
1638 max_fd = MAX(max_fd, connection_out); in client_loop()
1647 if (FD_ISSET(connection_out, writeset)) in client_loop()
/dports/security/pam_ssh/pam_ssh-8.0/openssh/
H A Dserverloop.c220 int connection_in, int connection_out, in wait_until_can_do_something() argument
269 FD_SET(connection_out, *writesetp); in wait_until_can_do_something()
355 process_output(struct ssh *ssh, fd_set *writeset, int connection_out) in process_output() argument
360 if (FD_ISSET(connection_out, writeset)) { in process_output()
400 u_int nalloc = 0, connection_in, connection_out; in server_loop2() local
408 connection_out = ssh_packet_get_connection_out(ssh); in server_loop2()
418 max_fd = MAXIMUM(connection_in, connection_out); in server_loop2()
437 wait_until_can_do_something(ssh, connection_in, connection_out, in server_loop2()
451 process_output(ssh, writeset, connection_out); in server_loop2()
H A Dpacket.c126 int connection_out;
242 state->connection_out = -1;
305 state->connection_out = fd_out;
439 if (state->connection_in == state->connection_out)
494 set_nonblock(ssh->state->connection_out);
510 return ssh->state->connection_out;
596 close(state->connection_out);
599 close(state->connection_out);
1933 len = write(state->connection_out,
1972 FD_SET(state->connection_out, setp);
[all …]
/dports/security/openssh-portable/openssh-8.8p1/
H A Dserverloop.c184 int connection_in, int connection_out, in wait_until_can_do_something() argument
234 FD_SET(connection_out, *writesetp); in wait_until_can_do_something()
314 process_output(struct ssh *ssh, fd_set *writeset, int connection_out) in process_output() argument
319 if (FD_ISSET(connection_out, writeset)) { in process_output()
354 u_int nalloc = 0, connection_in, connection_out; in server_loop2() local
365 connection_out = ssh_packet_get_connection_out(ssh); in server_loop2()
373 max_fd = MAXIMUM(connection_in, connection_out); in server_loop2()
399 wait_until_can_do_something(ssh, connection_in, connection_out, in server_loop2()
418 process_output(ssh, writeset, connection_out); in server_loop2()
H A Dpacket.c129 int connection_out; member
247 state->connection_out = -1; in ssh_alloc_session_state()
311 state->connection_out = fd_out; in ssh_packet_set_connection()
478 return get_sock_af(ssh->state->connection_out); in ssh_packet_connection_af()
490 set_nonblock(ssh->state->connection_out); in ssh_packet_set_nonblocking()
506 return ssh->state->connection_out; in ssh_packet_get_connection_out()
592 close(state->connection_out); in ssh_packet_close_internal()
595 close(state->connection_out); in ssh_packet_close_internal()
1966 len = write(state->connection_out, in ssh_packet_write_poll()
2005 FD_SET(state->connection_out, setp); in ssh_packet_write_wait()
[all …]
/dports/security/ncrack/ncrack-0.7/opensshlib/
H A Dpacket.c131 int connection_out; member
254 state->connection_out = -1;
468 set_nonblock(ssh->state->connection_out);
485 return ssh->state->connection_out; in ssh_packet_get_connection_out()
524 close(state->connection_out); in ssh_packet_close()
527 close(state->connection_out); in ssh_packet_close()
2153 FD_SET(nstate->connection_out, setp); in ssh_packet_write_wait()
2416 close(ssh->state->connection_out);
2417 ssh->state->connection_out = -1;
2443 ssh->state->connection_out = backup_state->state->connection_out;
[all …]
/dports/net-p2p/c-lightning/lightning-0.10.2/connectd/
H A Dconnectd.h14 struct io_plan *connection_out(struct io_conn *conn, struct connecting *connect);
H A Dtor.c72 return connection_out(conn, connect->connect); in connect_finish2()
97 return connection_out(conn, connect->connect); in connect_finish()
/dports/sysutils/ansible2/ansible-2.9.27/test/integration/targets/collections/
H A Dposix.yml383 register: connection_out
387 - connection_out.stdout == "localconn ran echo 'hello world'"
389 - connection_out.stderr == "connectionvar is from_play"
396 - hostvars['dynamic_host_a'].connection_out.stdout == "localconn ran echo 'hello world'"

12