srudp icon indicating copy to clipboard operation
srudp copied to clipboard

Secure Reliable User Datagram Protocol implemented by pure Python

Results 3 srudp issues
Sort by recently updated
recently updated
newest added

``` sock = SecureReliableSocket() Traceback (most recent call last): File "", line 1, in File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/srudp/__init__.py", line 201, in __init__ super().connect(self_address) OSError: [Errno 22] Invalid argument ```

I am using it on windows 10. this is from the test... `await loop.run_in_executor(self.executor, sock1.connect, ("127.0.0.1", self.port))` `await loop.run_in_executor(self.executor, sock2.connect, ("127.0.0.1", self.port))` `reader1, writer1 = await asyncio.open_connection(sock=sock1)` `reader2, writer2 =...

Hey, very cool project! Today i was testing the code in a long run, and this happend: ``` [DEBUG ] [MainThread] [2023-01-28 03:57:24,939 ] try to communicate addr=('192.168.0.30', 50001) bind=['',...