]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Wed, 27 Jul 2011 18:13:55 +0000 (18:13 +0000)
committerjsancho <devnull@localhost>
Wed, 27 Jul 2011 18:13:55 +0000 (18:13 +0000)
src/gacela.c

index c3864f87074a7f4ae4f3435220ecf2f619ae0488..12766dd1b8f41715bbd8f94e5b9652dcbdc8eb34 100644 (file)
@@ -235,6 +235,7 @@ start_local_server (char *working_path, SCM pipes)
   scm_c_eval_string ("(start-server pipes)");
 }
 
+/*
 void
 start_remote_client (char *hostname, int port)
 {
@@ -257,6 +258,16 @@ start_remote_client (char *hostname, int port)
     close (sockfd);
   }
 }
+*/
+
+void
+start_remote_client (char *hostname, int port)
+{
+  SCM sockfd;
+
+  sockfd = scm_socket (AF_INET, SOCK_STREAM);
+  scm_connect (sockfd, AF_INET, 
+}
 
 int
 main (int argc, char *argv[])