Skip to content

Commit 806f78d

Browse files
committed
Linux: Sockstat - fix incorrect version bump
I erred when I bumped the version as a part of !1271 - The `SockHandlers` class got the major version bump, not `Sockstat`. This reverts the `SockHandlers` version bump and applies it to `Sockstat` instead.
1 parent 5a6958b commit 806f78d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/plugins/linux/sockstat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ class Sockstat(plugins.PluginInterface):
438438

439439
_required_framework_version = (2, 0, 0)
440440

441-
_version = (1, 0, 0)
441+
_version = (2, 0, 0)
442442

443443
@classmethod
444444
def get_requirements(cls):
@@ -449,7 +449,7 @@ def get_requirements(cls):
449449
architectures=["Intel32", "Intel64"],
450450
),
451451
requirements.VersionRequirement(
452-
name="SockHandlers", component=SockHandlers, version=(1, 0, 0)
452+
name="SockHandlers", component=SockHandlers, version=(2, 0, 0)
453453
),
454454
requirements.PluginRequirement(
455455
name="lsof", plugin=lsof.Lsof, version=(1, 1, 0)

0 commit comments

Comments
 (0)