Search found 2 matches

by hannakt
Mon Jan 09, 2017 5:37 am
Forum: General Discussion and Questions
Topic: OSerr = 23
Replies: 2
Views: 6871

Re: OSerr = 23

Solved the issue..
sockets were not being closed.

At the very bottom of the code posted you will see:

c.close
vs
c.close()

Next problem is to learn how to post code blocks properly

Cheers and happy new year to all,
KTH
by hannakt
Thu Jan 05, 2017 7:31 pm
Forum: General Discussion and Questions
Topic: OSerr = 23
Replies: 2
Views: 6871

OSerr = 23

I get an OSError:23 when I am in a loop listening for socket connctions. The error occurs after 4 successful runs thought the loop and reports the dummy data back to the client. ON the 5th try, the error pops up. The code was stolen from a similar application running successfully on Raspberry Pi. I....