You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2020/12/04 01:16:16 UTC

[trafficserver] branch master updated: Cleanup: Remove SSL Wire Trace releated code in UnixNetVConnection (#7368)

This is an automated email from the ASF dual-hosted git repository.

masaori pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 00366d9  Cleanup: Remove SSL Wire Trace releated code in UnixNetVConnection (#7368)
00366d9 is described below

commit 00366d91470bfcff7e25494ef1377770afc0e946
Author: Masaori Koshiba <ma...@apache.org>
AuthorDate: Fri Dec 4 10:16:03 2020 +0900

    Cleanup: Remove SSL Wire Trace releated code in UnixNetVConnection (#7368)
---
 iocore/net/P_UnixNetVConnection.h | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/iocore/net/P_UnixNetVConnection.h b/iocore/net/P_UnixNetVConnection.h
index e636814..64e1738 100644
--- a/iocore/net/P_UnixNetVConnection.h
+++ b/iocore/net/P_UnixNetVConnection.h
@@ -268,11 +268,6 @@ public:
   bool from_accept_thread  = false;
   NetAccept *accept_object = nullptr;
 
-  // es - origin_trace associated connections
-  bool origin_trace;
-  const sockaddr *origin_trace_addr;
-  int origin_trace_port;
-
   int startEvent(int event, Event *e);
   int acceptEvent(int event, Event *e);
   int mainEvent(int event, Event *e);
@@ -296,24 +291,6 @@ public:
   void apply_options() override;
 
   friend void write_to_net_io(NetHandler *, UnixNetVConnection *, EThread *);
-
-  void
-  setOriginTrace(bool t)
-  {
-    origin_trace = t;
-  }
-
-  void
-  setOriginTraceAddr(const sockaddr *addr)
-  {
-    origin_trace_addr = addr;
-  }
-
-  void
-  setOriginTracePort(int port)
-  {
-    origin_trace_port = port;
-  }
 };
 
 extern ClassAllocator<UnixNetVConnection> netVCAllocator;