just a stub for now
authorAndrew Tridgell <tridge@samba.org>
Thu, 7 May 1998 14:53:02 +0000 (14:53 +0000)
committerAndrew Tridgell <tridge@samba.org>
Thu, 7 May 1998 14:53:02 +0000 (14:53 +0000)
socket.c [new file with mode: 0644]

diff --git a/socket.c b/socket.c
new file mode 100644 (file)
index 0000000..71aa6c2
--- /dev/null
+++ b/socket.c
@@ -0,0 +1,27 @@
+/* 
+   Copyright (C) Andrew Tridgell 1998
+   
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+/*
+  socket functions used in rsync 
+
+  */
+
+int open_socket_out(char *host, int port)
+{
+       return -1;
+}