cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] Changes to ccvs/src/socket-client.c


From: Derek Robert Price
Subject: [Cvs-cvs] Changes to ccvs/src/socket-client.c
Date: Sat, 24 Sep 2005 20:28:53 -0400

Index: ccvs/src/socket-client.c
diff -u ccvs/src/socket-client.c:1.17 ccvs/src/socket-client.c:1.18
--- ccvs/src/socket-client.c:1.17       Sun Sep 25 00:05:12 2005
+++ ccvs/src/socket-client.c    Sun Sep 25 00:28:51 2005
@@ -10,40 +10,21 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.  */
 
-#include <config.h>
+/***
+ *** THIS FILE SHOULD NEVER BE COMPILED UNLESS NO_SOCKET_TO_FD IS DEFINED.
+ ***/
 
-#include "cvs.h"
-#include "buffer.h"
+#ifdef HAVE_CONFIG
+# include <config.h>
+#endif
 
 #ifdef CLIENT_SUPPORT
 
-#include "socket-client.h"
-
-
-#if defined (AUTH_CLIENT_SUPPORT) || defined (HAVE_KERBEROS) || defined 
(HAVE_GSSAPI)
-
-struct hostent *
-init_sockaddr (struct sockaddr_in *name, char *hostname, unsigned int port)
-{
-    struct hostent *hostinfo;
-    unsigned short shortport = port;
-
-    memset (name, 0, sizeof (*name));
-    name->sin_family = AF_INET;
-    name->sin_port = htons (shortport);
-    hostinfo = gethostbyname (hostname);
-    if (!hostinfo)
-    {
-       fprintf (stderr, "Unknown host %s.\n", hostname);
-       exit (EXIT_FAILURE);
-    }
-    name->sin_addr = *(struct in_addr *) hostinfo->h_addr;
-    return hostinfo;
-}
+#include "cvs.h"
+#include "buffer.h"
 
-#endif
+#include "socket-client.h"
 
-#ifdef NO_SOCKET_TO_FD
 
 /* Under certain circumstances, we must communicate with the server
    via a socket using send() and recv().  This is because under some
@@ -256,7 +237,5 @@
                           memory,
                           sbuf);
 }
-
-#endif /* NO_SOCKET_TO_FD */
 
 #endif /* CLIENT_SUPPORT */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]