#endif
re_start:
-
+#ifdef NO_SYS_UN_H
+ if (init_client(&s,host,port,socket_type) == 0)
+#else
if ((!unix_path && (init_client(&s,host,port,socket_type) == 0)) ||
(unix_path && (init_client_unix(&s,unix_path) == 0)))
+#endif
{
BIO_printf(bio_err,"connect:errno=%d\n",get_last_socket_error());
SHUTDOWN(s);
int badarg = 0;
short port=PORT;
const char *unix_path=NULL;
+#ifndef NO_SYS_UN_H
int unlink_unix_path=0;
+#endif
int (*server_cb)(char *hostname, int s, int stype, unsigned char *context);
char *CApath=NULL,*CAfile=NULL;
char *chCApath=NULL,*chCAfile=NULL;
server_cb = www_body;
else
server_cb = sv_body;
+#ifndef NO_SYS_UN_H
if (unix_path)
{
if (unlink_unix_path)
do_server_unix(unix_path,&accept_socket,server_cb, context, naccept);
}
else
+#endif
do_server(port,socket_type,&accept_socket,server_cb, context, naccept);
print_stats(bio_s_out,ctx);
ret=0;