Ronnie Sahlberg
Ronnie Sahlberg
> Well, digging this topic off. :D From my perspective it would be great to have SMB support not only to transfer data but to skip using USB ports to...
I did look at AoE about 20 years ago. I even wrote the wireshark dissector for it :-) It is a nice little protocol, and simple. But I don't think...
For a replacement for UDPBD I would probably design a minimalist read-only network fs from scratch. Maybe something like this: It runs on UDP and is stateless, i.e. no open()/close()...
Ok, that sounds reasonable. So you will only read one 2048 byte sector at a time? IF memory is that critical I would then suggest you only read 1024 bytes...
@Uldiniad Patience grasshopper, patience.
nfs_open* with the flag O_TRUNC should do that. That will truncate the file when you open it.
SystemError: PY_SSIZE_T_CLEAN macro must be defined for '#' formats This change hurt me too. A python c module I depend on just started doing this when I upgraded to Fedora36....
All the paths should be relative to the root of the share if I recall correctly. Please try current master, it has an example utility that uses smb2_rename() On my...
On Wed, Aug 14, 2019 at 9:38 AM Aman Deep Gautam wrote: > when we use compound pdus, for example, smb2_cmd_open_async, > smb2_cmd_read_async and smb2_cmd_close_async we do not get any...
Don't export all symbols. We have a list of the symbols that should be exported and is is used in the autotool bulds : -export-symbols ${srcdir}/libsmb2.syms I don't know much...