From 524abe1338d548196e1e31d391f228a07d0f9f0f Mon Sep 17 00:00:00 2001 From: aatlasis <34843366+aatlasis@users.noreply.github.com> Date: Fri, 3 Aug 2018 12:05:05 +0200 Subject: [PATCH] Add files via upload --- bin/chiron_proxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/chiron_proxy.py b/bin/chiron_proxy.py index f2b3227..f9de03d 100644 --- a/bin/chiron_proxy.py +++ b/bin/chiron_proxy.py @@ -35,14 +35,14 @@ def __call__(self): return pkt #REQUIRED When loopback interface is used. Check if we can get rid off it - Use a pseudo interface instead of loopback? -def check_if_double_tcp_packet_in_ipv4_loopback(source_port,destination_port, seq, ack): +'''def check_if_double_tcp_packet_in_ipv4_loopback(source_port,destination_port, seq, ack): if [source_port,destination_port,seq,ack] in used_tcp_id: used_tcp_id.remove([source_port,destination_port,seq,ack]) return False else: used_tcp_id.append([source_port,destination_port,seq,ack]) return True - +''' #Sniff in IPv6 Interface, send to IPv4 class IPv6_to_IPv4_Worker() : def __init__(self,ipv6filter,ipv4_receiver,ipv4_sender, interface):