Re: [tor-dev] TOR socket for P2P in Python

2022-08-17 Thread Martin Neuenhofen via tor-dev
Dear Matt Traudt, Thank you for your answer. Three remarks: 1) I only found your answer coincidentally when I googled for LSAG + WOT. It would have been very nice if you had let me know that you answered. 2) Your answer sort of only repeats what is already written on Overflow. Since that was unhe

Re: [tor-dev] TOR socket for P2P in Python

2022-08-11 Thread Martin Neuenhofen via tor-dev
Sorry to bother again. An equally good solution to replacing *client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)client_socket.connect(ip,port)* with a TOR solution could be via a command line interface: os.system("torsocketprogram -send 123.45.67.89 9000 filename.bytes") and os.syst

[tor-dev] TOR socket for P2P in Python

2022-08-11 Thread Martin Neuenhofen via tor-dev
Dear Tor Developers, in my application, a client connects to a server via: *client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)client_socket.connect(ip,port)* I want to replace these two lines to create a client_socket whose IP address cannot be seen by the server. The application