You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2013/08/30 18:20:19 UTC

[06/50] git commit: remove unnecessary Connection::setup_mc_send() compatibility wrapper

remove unnecessary Connection::setup_mc_send() compatibility wrapper


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/9e6ad5cd
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/9e6ad5cd
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/9e6ad5cd

Branch: refs/heads/5.0.x
Commit: 9e6ad5cdf1fe903ef1d6be4f72c79f90a21f89a5
Parents: 36059e2
Author: James Peach <jp...@apache.org>
Authored: Wed Aug 21 15:58:52 2013 -0700
Committer: James Peach <jp...@apache.org>
Committed: Wed Aug 21 16:01:13 2013 -0700

----------------------------------------------------------------------
 iocore/net/P_Connection.h | 22 ----------------------
 1 file changed, 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9e6ad5cd/iocore/net/P_Connection.h
----------------------------------------------------------------------
diff --git a/iocore/net/P_Connection.h b/iocore/net/P_Connection.h
index e974a37..7abaa8e 100644
--- a/iocore/net/P_Connection.h
+++ b/iocore/net/P_Connection.h
@@ -130,28 +130,6 @@ struct Connection
                     bool non_blocking = NON_BLOCKING,
                     unsigned char mc_ttl = 1, bool mc_loopback = DISABLE_MC_LOOPBACK, Continuation * c = NULL);
 
-  /**
-    @deprecated preserve backward compatibility with non-IPv6 iocore
-  */
-
-  int setup_mc_send(unsigned int mc_ip, int mc_port,
-                    unsigned int my_ip, int my_port,
-                    bool non_blocking = NON_BLOCKING,
-                    unsigned char mc_ttl = 1, bool mc_loopback = DISABLE_MC_LOOPBACK, Continuation * c = NULL)
-  {
-    struct sockaddr_in mc_addr;
-    struct sockaddr_in my_addr;
-
-    ats_ip4_set(&mc_addr, mc_ip, htons(mc_port));
-    ats_ip4_set(&my_addr, my_ip, htons(my_port));
-
-    return setup_mc_send(
-        ats_ip_sa_cast(&mc_addr), 
-        ats_ip_sa_cast(&my_addr), 
-        non_blocking, mc_ttl, mc_loopback, c);
-  }                 
-
-
   int setup_mc_receive(sockaddr const* from,
                        bool non_blocking = NON_BLOCKING, Connection * sendchan = NULL, Continuation * c = NULL);