Re: How to recursively accept data from Python server ?

2021-06-25 Thread Utk via Digitalmars-d-learn
On Friday, 25 June 2021 at 05:46:54 UTC, Utk wrote: On Friday, 25 June 2021 at 03:27:24 UTC, jfondren wrote: On Friday, 25 June 2021 at 02:55:50 UTC, Utk wrote: Please help me to resolve this issue. Try stracing your program to see exactly what it's doing with the socket, and try std.socket's

Re: How to recursively accept data from Python server ?

2021-06-24 Thread Utk via Digitalmars-d-learn
On Friday, 25 June 2021 at 03:27:24 UTC, jfondren wrote: On Friday, 25 June 2021 at 02:55:50 UTC, Utk wrote: Please help me to resolve this issue. Try stracing your program to see exactly what it's doing with the socket, and try std.socket's lastSocketError I tried using ```lastSocketError()

How to recursively accept data from Python server ?

2021-06-24 Thread Utk via Digitalmars-d-learn
Hello! I'm trying to establish a connection between a python server and a d client. The data is been transferred properly only once and then the d client doesn't wait for any further data and returns an error ```Socket.ERROR``` and exists and doesn't wait for further incoming data from the Pyt