From bc2e93eb8e6562590492e39349b37c38711a05ce Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 7 May 1998 14:53:02 +0000 Subject: [PATCH] just a stub for now --- socket.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 socket.c diff --git a/socket.c b/socket.c new file mode 100644 index 00000000..71aa6c2a --- /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; +} -- 2.34.1