Petr Beneš

Results 15 issues of Petr Beneš

This might be challenging, as the Linux headers and C++ don't like each other very much. I assume compiling OS-related stuff in separate *.c files and link/wrap them with *.cpp...

enhancement

* Create a consumer connection * Create a task T1 with `await connection.closing` * When T1 gets externally cancelled (not by `close()` method, but e.g. when Ctrl+C is pressed during...

Here https://github.com/mosquito/aiormq/blob/master/aiormq/connection.py#L439 ... is this snippet of code: ```python self._reader_task = None # 1 await asyncio.gather( self.__close_writer(writer), return_exceptions=True ) await asyncio.gather(self._reader_task, return_exceptions=True) # 2 ``` `self._reader_task` is being set to...

Hi, In `VMX_EPTP`, `VMX_EPML4E`, `VMX_PDPTE`, `MTRR_VARIABLE_BASE` & `MTRR_VARIABLE_MASK` structures, there is a member defined as: `UINT64 PageFrameNumber : 36` Intel manual says size of this field should be MAXPHYADDR, which...

Especially for typing purposes, I would appreciate if `Job` and `Scheduler` class were publicly exported. Is there any reason to not do it?

Current behavior: ```python >>> toml.dumps({ 'val': 'win32\\path\\x64\\file.txt'}) 'val = "win32\\path\\x64\\\\file.txt"\n' # note the \\\\ after x64 ``` Correct behavior: ```python toml.dumps({ 'val': 'win32\\path\\x64\\file.txt'}) 'val = "win32\\path\\x64\\file.txt"\n' ``` I suspect the...

component: encoder
type: bug
syntax: strings

### Brief description I was trying to decrypt a simple Powershell HTTPS request. Unfrotunatelly, scapy isn't able to decrypt the TLS Application Data. Wireshark is able to decrypt the pcap...

bug
tls