From bd8f96a325729a319f1c9f4785a909cf26ac163a Mon Sep 17 00:00:00 2001
From: Pierre LALET <pierre.lalet@cea.fr>
Date: Wed, 21 Dec 2016 12:51:54 +0100
Subject: [PATCH] Remove double class declaration

---
 scapy/layers/bluetooth.py | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/scapy/layers/bluetooth.py b/scapy/layers/bluetooth.py
index 2f236cff..ab48fbb3 100644
--- a/scapy/layers/bluetooth.py
+++ b/scapy/layers/bluetooth.py
@@ -526,16 +526,6 @@ class HCI_Cmd_LE_Create_Connection(Packet):
                     LEShortField("min_ce", 0),
                     LEShortField("max_ce", 0), ]
     
-class HCI_Cmd_LE_Connection_Update(Packet):
-    name = "LE Connection Update"
-    fields_desc = [ LEShortField("conn_handle", 64),
-                    LEShortField("conn_interval_min", 0),
-                    LEShortField("conn_interval_max", 0),
-                    LEShortField("conn_latency", 0),
-                    LEShortField("timeout", 600),
-                    LEShortField("min_ce_len", 0),
-                    LEShortField("max_ce_len", 0),]
-
 class HCI_Cmd_LE_Create_Connection_Cancel(Packet):
     name = "LE Create Connection Cancel"
 
-- 
GitLab