14
0

50 Commits

Author SHA256 Message Date
1c394de37f Accepting request 1223468 from devel:languages:python
Forwarded request #1223449 from mnhauke

- Update to version 1.15.0
    * Fix Impacket logoff session id check.
    * Update session id logic.
    * Add smbclient.liststreams to enumerate ADS streams.
    * Add some type annotations, most notably to smbclient.open_file
    * Add Python 3.13 support.

OBS-URL: https://build.opensuse.org/request/show/1223468
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=23
2024-11-12 18:21:52 +00:00
27c6da330a Accepting request 1223449 from home:mnhauke
- Update to version 1.15.0
  * Fix Impacket logoff session id check.
  * Update session id logic.
  * Add smbclient.liststreams to enumerate ADS streams.
  * Add some type annotations, most notably to smbclient.open_file
  * Add Python 3.13 support.

OBS-URL: https://build.opensuse.org/request/show/1223449
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=46
2024-11-12 01:24:20 +00:00
8a611f6911 Accepting request 1223346 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1223346
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=22
2024-11-11 13:58:20 +00:00
47fc5bfe4e Accepting request 1223192 from home:mnhauke
- Update to version 1.14.0
  * type information of SMBDirEntryInformation.last_write_time set
    to datetime.
  * Customizable receive timeout for SMB Connection
  * Dropped support for Python 3.7
  * SMBDirEntryInformation.last_write_time is now annotated as
    datetime.datetime. Previously, it was datetime.date.

OBS-URL: https://build.opensuse.org/request/show/1223192
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=44
2024-11-11 11:37:38 +00:00
36c11f4809 Accepting request 1160444 from devel:languages:python
- update to 1.13.0:
  * Added the property `smb_info` on `SMBDirEntry` which returns
    a named tuple `SMBDirEntryInformation` containing metadata
    already retrieved in the `scandir` operation.
  * This avoid having to call `stat()` to retrieve data like the
    file attributes or datetime fields that is already available
  * Ensure `DateTimeField` values are set to `UTC` timezones as
    FILETIME values are in UTC
  * Stop using `datetime.datetime.utcfromtimestamp()` as it has
    been deprecated
  * Added default timeout for disconnect operations for 60
    seconds to ensure the process doesn't hang forever when
    closing a broken connection
  * `smbprotocol.connection.Connection.disconnect()` now waits
    (with a timeout) for the message processing threads to be
    stopped before returning.
  * Do not set the SMB SessionId and TreeId in the headers to
    `0xFFFFFFFF` for related compound requests
    + Ensures the source file for `shutil.copyfile` is opened
      with `share_access="r"` for better compatibility with files
      already opened by something else
    + Remove endless authentication loop when the context is
      complete and no more input messages are needed

- Update to version 1.10.1
- python-six is not required
- Update to version 1.9.0

OBS-URL: https://build.opensuse.org/request/show/1160444
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=21
2024-03-22 14:20:30 +00:00
374986af06 - update to 1.13.0:
* Added the property `smb_info` on `SMBDirEntry` which returns
    a named tuple `SMBDirEntryInformation` containing metadata
    already retrieved in the `scandir` operation.
  * This avoid having to call `stat()` to retrieve data like the
    file attributes or datetime fields that is already available
  * Ensure `DateTimeField` values are set to `UTC` timezones as
    FILETIME values are in UTC
  * Stop using `datetime.datetime.utcfromtimestamp()` as it has
    been deprecated
  * Added default timeout for disconnect operations for 60
    seconds to ensure the process doesn't hang forever when
    closing a broken connection
  * `smbprotocol.connection.Connection.disconnect()` now waits
    (with a timeout) for the message processing threads to be
    stopped before returning.
  * Do not set the SMB SessionId and TreeId in the headers to
    `0xFFFFFFFF` for related compound requests
    + Ensures the source file for `shutil.copyfile` is opened
      with `share_access="r"` for better compatibility with files
      already opened by something else
    + Remove endless authentication loop when the context is
      complete and no more input messages are needed
- Update to version 1.10.1
- python-six is not required
- Update to version 1.9.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=42
2024-03-21 17:35:34 +00:00
3aeb10da62 Accepting request 1128609 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1128609
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=20
2023-11-24 22:35:31 +00:00
d54393b74f Accepting request 1128564 from home:mnhauke
- Update to version 1.12.0
  * Add 0xc000007f to mapping.
  * Added the DiskFull error and message for the NTSTATUS code
    0xC000007F.

OBS-URL: https://build.opensuse.org/request/show/1128564
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=40
2023-11-24 14:49:28 +00:00
7e7077826b Accepting request 1109235 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1109235
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=19
2023-09-06 16:59:45 +00:00
27fde655c9 Accepting request 1109147 from home:mnhauke
- Update to version 1.11.0
  * Fix up pre authenticated session id lookups that were failing
    with Linux ksmbd.
  * Removes logging.NullHandler() being set in the root
    smbprotocol namespace.
  * Adds basic support for remote to local and vice versa file
    operations with smbclient.shutil.copytree.
  * Fixes DFS infinite recursion error when dealing with a file
    that does not exist on a DFS namespace.

OBS-URL: https://build.opensuse.org/request/show/1109147
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=38
2023-09-06 09:37:26 +00:00
ca809edff1 Accepting request 1040401 from devel:languages:python
- Update to version 1.10.1 
  * Raise the original BadNetworkName error if the server doesn't indicate it supports DFS or
    FSDriverRequired was raised trying to lookup the DFS information - #196
  * Fix pre auth session id tracking if the intermediate token messages return 0 as the session id

OBS-URL: https://build.opensuse.org/request/show/1040401
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=18
2022-12-06 13:23:11 +00:00
bc96bcff72 We don't need to ask for setuptools BR
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=36
2022-12-05 17:49:21 +00:00
f7bffeadf3 Clean up SPEC file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=35
2022-12-05 17:47:41 +00:00
22dc52efb6 Clean up SPEC file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=34
2022-12-05 17:46:17 +00:00
812e1246c9 Accepting request 1040282 from home:yarunachalam:branches:devel:languages:python
- Update to version 1.10.1 
  * Raise the original BadNetworkName error if the server doesn't indicate it supports DFS or
    FSDriverRequired was raised trying to lookup the DFS information - #196
  * Fix pre auth session id tracking if the intermediate token messages return 0 as the session id

OBS-URL: https://build.opensuse.org/request/show/1040282
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=33
2022-12-05 17:44:24 +00:00
5d842687e3 Accepting request 1034135 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1034135
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=17
2022-11-07 12:52:06 +00:00
b026f0cf1d Accepting request 1033883 from home:mnhauke
- Update to version 1.10.0
  * Allow server side copy across different shares on the same
    server.
  * Improve DFS file opens.
  * Fix rename operations for a DFS path.
  * Fix negotiate request context padding.

OBS-URL: https://build.opensuse.org/request/show/1033883
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=31
2022-11-07 10:18:10 +00:00
d4b8baf25e Accepting request 1030871 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1030871
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=16
2022-10-25 09:19:39 +00:00
41e89a711f Accepting request 1030410 from home:pgajdos:python
- python-six is not required

OBS-URL: https://build.opensuse.org/request/show/1030410
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=29
2022-10-24 11:40:55 +00:00
379cacbb70 Accepting request 1008844 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1008844
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=15
2022-10-07 23:25:58 +00:00
Martin Hauke
ce0e551a18 Accepting request 1008841 from home:yarunachalam:branches:devel:languages:python
- Update to version 1.9.0 
  * Fix connection cache reuse for some DFS referral requests
  * Add smbclient.path to the smbclient import allowing import smbclient; smbclient.path.func()

OBS-URL: https://build.opensuse.org/request/show/1008841
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=27
2022-10-07 16:13:32 +00:00
a2729d3c94 Accepting request 932761 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/932761
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=14
2021-11-21 22:52:09 +00:00
8db40a2df3 Accepting request 932362 from home:mnhauke
- Update to version 1.8.3
  * Set additional_information field in SMB2SetInfoRequest to a
    flags field rather than a single enum as per protocol docs.

OBS-URL: https://build.opensuse.org/request/show/932362
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=26
2021-11-21 10:52:37 +00:00
b165742325 Accepting request 929849 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/929849
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=13
2021-11-08 16:24:19 +00:00
4233af95f6 Accepting request 928862 from home:mnhauke
- Update to version 1.8.2
  * Add missing FileAttributes enum values
  * Set messages with FileAttributes to be non-strict allowing
    unknown values in the future to be parsed without an error

- Update to version 1.8.1
  * Raises ObjectPathNotFound if a DFS referral is required but
    not referrals are available (#149)

- Update to version 1.8.0
  * Added support for 256bit keyed encryption ciphers
  * Added support for signing with AES GCM
  * Now sends the SMB2_NETNAME_NEGOTIATE_CONTEXT_ID with the
    negotiate request
  * Adds the Python requirement of pykrb5 for Kerberos support on
    non-Windows
  * Fix unpacking security descriptor ACEs with extra data on the
    end
  * Set index_number in FileInternalInformation to be an unsigned
    integer to match the other structures
  * Clear out expired DFS referrals to avoid memory leaks and
    stale DFS information
- Update to version 1.7.0
  * Improve connection health checks to reduce the occurances of
    an infinite deadlock
  * Added more exception error classes
  * Added create_action to the Open object that describes how the
    file was opened
  * Added follow_symlinks option to SMBDirEntry.from_path to
    control whether the entry.

OBS-URL: https://build.opensuse.org/request/show/928862
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=25
2021-11-06 10:36:07 +00:00
Richard Brown
258f74f91d Accepting request 912863 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/912863
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=12
2021-08-19 08:01:05 +00:00
c50e4ac1a6 Accepting request 912725 from home:mnhauke
- Update to version 1.6.2
  * Fix up cached credential logic when setting domain_controller
    in the initial config singleton
- Update to version 1.6.1
  * Remove print() statement that was used during testing
- Update to version 1.6.0
  * Dropped support for Python 2.7 and 3.5
  * Add performance improvement on reads with large files
  * Added the require_signing kwarg to smbclient.register_session()
    to allow the caller to control whether signing is required on
    the connection or not.
  * Fix OverflowError when handling FILETIME values beyond the year
    9999 - caps the value to 9999-12-31 due to a Python limitation
  * Fix up credit charge calculation which causes a
    STATUS_INVALID_PARAMETER response for certain read/write
    lengths.
  * Ensure responses with a failure are cleaned up from the
    outstanding request table to avoid memory leaks.

OBS-URL: https://build.opensuse.org/request/show/912725
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=24
2021-08-18 09:50:04 +00:00
c92f7cee66 Accepting request 893035 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/893035
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=11
2021-05-17 16:45:00 +00:00
f05e37c6d9 Accepting request 892928 from home:mnhauke
- Update to version 1.5.1
  * Unified DFS path handling when using any API that uses a
    transaction to open the file.
    - This includes smbclient.rename and smbclient.replace
  * Fixed up smbclient.rename to work with directories.
  * smbclient.scandir will continue to use the connection cache
    when getting stat information of a dir entry.
  * smbclient.shutil.rmtree will continue to use the connection
    cache when removing child entries.

OBS-URL: https://build.opensuse.org/request/show/892928
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=22
2021-05-14 06:53:28 +00:00
Richard Brown
5457416a44 Accepting request 881306 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/881306
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=10
2021-03-25 13:53:02 +00:00
9d9acb8ffe Accepting request 881292 from home:mnhauke
- Update to version 1.5.0
  * Added smbprotocol.exceptions.SMBConnectionClosed that is
    raised when trying to send or receive data on a connection
    that has been closed.
  * Added smbprotocol.exceptions.WrongPassword that is raised when
    some servers indicate the password is not correct or the
    account is locked out.
  * Do not attempt to reuse any cached connections that have been
    closed in smbclient
  * Added a lock when writing to the socket, only 1 thread can
    write a message at a single point in time
  * Revamped the SMB receiver code to simplify the logic and make
    it more durable
    + Removed the TCP recv thread for each connection, now each
      connection uses just 1 thread instead of 2.
    + Be more defensive when reading data from a socket to ensure
      we get all the data we require.
    + Handled server side FIN packets that close the connection
      unexpectedly, any requests waiting for a response will
      raise SMBConnectionClosed.

OBS-URL: https://build.opensuse.org/request/show/881292
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=20
2021-03-25 12:24:08 +00:00
cf536d167e Accepting request 869527 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/869527
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=9
2021-02-04 19:24:44 +00:00
2a7e3b4934 Accepting request 869043 from home:mnhauke
- Update to version 1.4.0
  * Fixed up secure negotiation logic when connecting to older
    SMB dialects.
  * Will attempt to perform secure negotiation even on older
    dialects that may not implement it properly.
  * Added `ClientConfig` option `require_secure_negotiate` to
    globally turn off secure negotiation if the client wishes.
  * Fix explicit `ntlm` or `kerberos` authentication when the
    server response with the initial SPNEGO mech list token.

- Update to version 1.3.0
  * Changed initial credit request from 256 to 64 when creating
    the SMB session.
    + This is done to avoid overloading the SMB server.
    + If smbclient requires more credits to perform an operation
      it will request it automatically.
  * Improve credit handling when reading and writing large amounts
    of data to reduce the number of requests being made.
  * Fixed up write() in smbclient.open_file() to be able to write
    bytes greater than the max_write_size.
  * Fixed issue when receiving an unknown NtStatus error code from
    the server.
  * Added PipeBusy exception for STATUS_PIPE_NOT_AVAILABLE
    0xC00000AD error responses.
  * Fix credit granting calculation when receiving a compound
    response.
    + Original logic granted len(responses) - 1 credits than what
      the server actually given causing errors when the client ran
      out of credits without it knowing.
  * Added auth_protocol to Session, ClientConfig, and

OBS-URL: https://build.opensuse.org/request/show/869043
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=18
2021-02-04 16:33:13 +00:00
2f91242d49 Accepting request 844838 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/844838
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=8
2020-10-29 13:52:42 +00:00
35e2bc80f8 Accepting request 843920 from home:mnhauke
- Update to version 1.2.0
  * Added experimental support for DFS shares when using smbclient
    function.
  * Added smbclient.ClientConfig() to set global default options
    on new connections.
  * Moved the SMB Header structures to smbprotocol.header.
  * Added null_terminated option for a TextField value.
  * Fix broken pipe errors that occur on long running connections
    by sending a echo request for each connection session every
    10 minutes.

OBS-URL: https://build.opensuse.org/request/show/843920
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=16
2020-10-29 10:39:49 +00:00
8b9e2fe242 Accepting request 829569 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/829569
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=7
2020-08-31 14:48:29 +00:00
Tomáš Chvátal
2043c5fc54 Accepting request 829557 from home:mnhauke
- Update to version 1.1.0
  * Speed up logging statements for large messages like a read and
    write message.
  * Changed authentication dep to pyspnego that handles all the
    authentication work.
  * Fixed up authentication against hosts that don't present the
    initial GSSAPI token like Azure File Storage.
  * Added specific exception types for every 'NtStatus' value to
    make it easier to catch only specific exceptions.
  * Added the following exceptions  to the list of known exception
    codes:
      * 'STATUS_NETWORK_NAME_DELETED'
      * 'STATUS_NOT_FOUND'
      * 'STATUS_PATH_NOT_COVERED'
      * 'STATUS_DFS_UNAVAILABLE'
      * 'STATUS_SERVER_UNAVAILABLE'
  * Fix session key generation when creating a new session from
    an existing connection object.

OBS-URL: https://build.opensuse.org/request/show/829557
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=14
2020-08-25 13:37:27 +00:00
e7e1139ef0 Accepting request 757887 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/757887
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=6
2019-12-21 11:29:41 +00:00
a523a1ca69 Accepting request 755933 from home:mnhauke
- Update to version 1.0.1
  * Fix issue when reading a large file that exceeds 65KB and
    raises STATUS_END_OF_FILE.
  * Fix issue where listdir, scandir, walk would only enumerate a
    subset of entries in a directories with lots of sub files/
    folders

OBS-URL: https://build.opensuse.org/request/show/755933
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=12
2019-12-18 15:19:52 +00:00
484a4dfe66 Accepting request 752810 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/752810
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=5
2019-12-02 10:35:55 +00:00
Tomáš Chvátal
7da2ffd675 Accepting request 752660 from home:mnhauke
- Update to version 1.0.0
  * Dropped support for Python 2.6 and Python 3.4
  * Added the smbclient package that provides a higher level API
    for interactive with SMB servers
  * Deprecated smbprotocol.query_info in favour of
    smbprotocol.file_info, query_info will be removed in the next
    major release
  * Add automatic symlink resolver when a symlink is in the path
    being opened
  * Fix issue when trying to connect to host with IPv6 address
  * Fix response parsing for SMB2 Create Response Lease V1 and V2
  * Added the ability to set the Oplock level when opening a file
  * Revamped the socket listener and message processor to run in a
    separate thread for faster message resolving
  * Added the FileSystemWatcher in change_notify.py to provider a
    way to watch for changes on the SMB filesystem
  * Added the .cancel() method onto a Request to cancel an SMB
    request on the server

OBS-URL: https://build.opensuse.org/request/show/752660
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=10
2019-12-02 07:40:31 +00:00
e7b469eaa9 Accepting request 732117 from devel:languages:python
- Update to version 0.2.0
  * Fix issue where timeout was not being applied to the new
    connection
  * Fix various deprecated regex escape patterns
  * Simplified the fallback NTLM context object

OBS-URL: https://build.opensuse.org/request/show/732117
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=4
2019-09-23 10:37:54 +00:00
Tomáš Chvátal
1b450e6bf8 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=8 2019-09-20 09:56:22 +00:00
Tomáš Chvátal
5984add100 Accepting request 732010 from home:mnhauke
- Update to version 0.2.0
  * Fix issue where timeout was not being applied to the new
    connection
  * Fix various deprecated regex escape patterns
  * Simplified the fallback NTLM context object

OBS-URL: https://build.opensuse.org/request/show/732010
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=7
2019-09-20 09:56:00 +00:00
ef114c8387 Accepting request 662603 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/662603
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=3
2019-01-03 17:09:26 +00:00
Tomáš Chvátal
476e0b0961 Accepting request 662560 from home:jengelh:branches:devel:languages:python
- Use noun phrase in summary.

OBS-URL: https://build.opensuse.org/request/show/662560
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=5
2019-01-03 06:46:51 +00:00
5d9fd7ea26 Accepting request 662056 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/662056
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=2
2018-12-31 08:47:17 +00:00
50eea1e3f1 Accepting request 662055 from home:mnhauke
- Update to version 0.1.1
  * Fix initial negotiate message not setting connection timeout
    value.
  * Fix endless loop when running a compound message that failed.

OBS-URL: https://build.opensuse.org/request/show/662055
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=3
2018-12-30 09:35:54 +00:00
c1dff23559 Accepting request 655899 from devel:languages:python
SMBv2 and v3 Client for both Python 2 and 3.

OBS-URL: https://build.opensuse.org/request/show/655899
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=1
2018-12-10 11:28:57 +00:00
c6637ec761 Accepting request 633777 from home:mnhauke
Initial package for python-smbprotocol

OBS-URL: https://build.opensuse.org/request/show/633777
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=1
2018-09-07 21:40:44 +00:00