[MPlayer-cvslog] r18855 - trunk/libmpdemux/librtsp/rtsp.c

ben subversion at mplayerhq.hu
Thu Jun 29 23:27:07 CEST 2006


Author: ben
Date: Thu Jun 29 23:27:07 2006
New Revision: 18855

Modified:
   trunk/libmpdemux/librtsp/rtsp.c

Log:
2 more unused functions removal (trying to sync with xine)

Modified: trunk/libmpdemux/librtsp/rtsp.c
==============================================================================
--- trunk/libmpdemux/librtsp/rtsp.c	(original)
+++ trunk/libmpdemux/librtsp/rtsp.c	Thu Jun 29 23:27:07 2006
@@ -114,58 +114,6 @@
  * network utilities
  */
  
-static int host_connect_attempt(struct in_addr ia, int port) {
-
-  int                s;
-  struct sockaddr_in sin;
-
-  s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);  
-  if (s == -1) {
-    mp_msg(MSGT_OPEN, MSGL_ERR, "rtsp: socket(): %s\n", strerror(errno));
-    return -1;
-  }
-
-  sin.sin_family = AF_INET;
-  sin.sin_addr   = ia;
-  sin.sin_port   = htons(port);
-  
-  if (connect(s, (struct sockaddr *)&sin, sizeof(sin))==-1 
-#ifndef HAVE_WINSOCK2
-      && errno != EINPROGRESS) {
-#else
-      && WSAGetLastError() == WSAEINPROGRESS) {
-#endif
-    mp_msg(MSGT_OPEN, MSGL_ERR, "rtsp: connect(): %s\n", strerror(errno));
-    closesocket(s);
-    return -1;
-  }
-
-  return s;
-}
-
-static int host_connect(const char *host, int port) {
-
-  struct hostent *h;
-  int             i, s;
-  
-  h = gethostbyname(host);
-  if (h == NULL) {
-    mp_msg(MSGT_OPEN, MSGL_ERR, "rtsp: unable to resolve '%s'.\n", host);
-    return -1;
-  }
-
-  for (i = 0; h->h_addr_list[i]; i++) {
-    struct in_addr ia;
-
-    memcpy (&ia, h->h_addr_list[i], 4);
-    s = host_connect_attempt(ia, port);
-    if(s != -1)
-      return s;
-  }
-  mp_msg(MSGT_OPEN, MSGL_ERR, "rtsp: unable to connect to '%s'.\n", host);
-  return -1;
-}
-
 static int write_stream(int s, const char *buf, int len) {
   int total, timeout;
 



More information about the MPlayer-cvslog mailing list