From 201523afe17bd712920dbe79d085c76dc9049cf3 Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Wed, 25 Apr 2018 10:51:35 -0700 Subject: [PATCH] add missing SessionFlag SMB2_SESSION_FLAG_IS_NULL --- pike/__init__.py | 2 +- pike/smb2.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pike/__init__.py b/pike/__init__.py index 1fff2898..ee019c27 100644 --- a/pike/__init__.py +++ b/pike/__init__.py @@ -13,5 +13,5 @@ 'test', 'transport', ] -__version_info__ = (0, 2, 15) +__version_info__ = (0, 2, 16) __version__ = "{0}.{1}.{2}".format(*__version_info__) diff --git a/pike/smb2.py b/pike/smb2.py index 4dda142f..1ebcddb7 100644 --- a/pike/smb2.py +++ b/pike/smb2.py @@ -643,6 +643,7 @@ def __init__(self, parent): class SessionFlags(core.FlagEnum): SMB2_SESSION_FLAG_NONE = 0x00 SMB2_SESSION_FLAG_BINDING = 0x01 + SMB2_SESSION_FLAG_IS_NULL = 0x02 SMB2_SESSION_FLAG_ENCRYPT_DATA = 0x04 SessionFlags.import_items(globals())