Skip to content

Commit

Permalink
Merge pull request #43 from isi-mfurer/session-flag
Browse files Browse the repository at this point in the history
add missing SessionFlag SMB2_SESSION_FLAG_IS_NULL
  • Loading branch information
isi-mfurer committed Jun 7, 2018
2 parents 3f0d618 + 201523a commit a96b1c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pike/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
'test',
'transport',
]
__version_info__ = (0, 2, 15)
__version_info__ = (0, 2, 16)
__version__ = "{0}.{1}.{2}".format(*__version_info__)
1 change: 1 addition & 0 deletions pike/smb2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit a96b1c2

Please sign in to comment.