From 34d85c11d084d9c82c1ac62100fbfda701508962 Mon Sep 17 00:00:00 2001 From: jsancho Date: Wed, 27 Jul 2011 18:13:55 +0000 Subject: [PATCH] --- src/gacela.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/gacela.c b/src/gacela.c index c3864f8..12766dd 100644 --- a/src/gacela.c +++ b/src/gacela.c @@ -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[]) -- 2.39.2