From: jsancho Date: Wed, 27 Jul 2011 18:13:55 +0000 (+0000) Subject: (no commit message) X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=34d85c11d084d9c82c1ac62100fbfda701508962;p=gacela.git --- 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[])