Lines Matching refs:config_s
922 server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s,
1149 SOCK_STREAM, 0, config_s) == -1) {
1156 children_active, config_s[0])) {
1158 close(config_s[0]);
1159 close(config_s[1]);
1177 send_rexec_state(config_s[0]);
1178 close(config_s[0]);
1189 set_nonblock(config_s[0]);
1191 child = child_register(config_s[0], *newsock);
1209 close(config_s[0]);
1221 close(config_s[1]);
1296 int devnull, config_s[2] = { -1 , -1 }, have_connection_info = 0;
1784 if (socketpair(AF_UNIX, SOCK_STREAM, 0, config_s) == -1)
1786 send_rexec_state(config_s[0]);
1787 close(config_s[0]);
1815 &newsock, config_s, log_stderr);
1829 debug("rexec start in %d out %d newsock %d config_s %d/%d",
1830 sock_in, sock_out, newsock, config_s[0], config_s[1]);
1839 if (config_s[1] != REEXEC_CONFIG_PASS_FD) {
1840 if (dup2(config_s[1], REEXEC_CONFIG_PASS_FD) == -1)
1841 fatal("dup2 config_s: %s", strerror(errno));
1842 close(config_s[1]);