From a3fd95c2109ef037170fe3bd64e4ea16b0375d3a Mon Sep 17 00:00:00 2001 From: iMHLv2 Date: Wed, 9 May 2012 23:35:49 +0000 Subject: [PATCH] delete netscan.tcp_states (should have happened in r1686) --- volatility/plugins/netscan.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/volatility/plugins/netscan.py b/volatility/plugins/netscan.py index 76a6c558..73e11459 100644 --- a/volatility/plugins/netscan.py +++ b/volatility/plugins/netscan.py @@ -25,22 +25,6 @@ import volatility.obj as obj import volatility.cache as cache import socket -tcp_states = [ - "", # This must be empty, so the first enum starts at 1 - "CLOSED", - "LISTENING", - "SYN_SENT", - "SYN_RCVD", - "ESTABLISHED", - "FIN_WAIT1", - "FIN_WAIT2", - "CLOSE_WAIT", - "CLOSING", - "LAST_ACK", - "TIME_WAIT", - "DELETE_TCB", -] - # Python's socket.AF_INET6 is 0x1e but MSFT's is 0x17..and we need to use MSFT's AF_INET = 2 AF_INET6 = 0x17